* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 16px;
}

.main-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0066cc;
}

.nav-cta {
    background: #0066cc;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: #0052a3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #66b3ff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-accept {
    background: #0066cc;
    color: white;
}

.btn-accept:hover {
    background: #0052a3;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    padding: 4rem 2rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text-narrow {
    margin-bottom: 3rem;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #444;
    font-weight: 400;
}

.hero-image {
    margin: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.content-block {
    padding: 3rem 2rem;
    margin: 0 auto;
}

.content-block.narrow {
    max-width: 700px;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #0a0a0a;
}

.content-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

.content-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.opening-statement {
    font-size: 1.25rem;
    font-style: italic;
    color: #333;
    border-left: 4px solid #0066cc;
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.inline-cta-box {
    background: #f8f9fa;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 700px;
    border-radius: 8px;
    border-left: 5px solid #0066cc;
}

.inline-cta-box.highlight {
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: white;
    border-left: none;
}

.inline-cta-box.highlight h3 {
    color: white;
}

.inline-cta-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.inline-cta-box p {
    margin-bottom: 1.5rem;
}

.cta-inline {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-inline:hover {
    background: #0052a3;
}

.cta-inline.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.inline-cta-box.highlight .cta-inline {
    background: white;
    color: #0066cc;
}

.inline-cta-box.highlight .cta-inline:hover {
    background: #f0f0f0;
}

.inline-image {
    margin: 3rem auto;
    max-width: 900px;
    padding: 0 2rem;
}

.inline-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.inline-image figcaption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

.trust-signal {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.trust-signal blockquote {
    border-left: 5px solid #0066cc;
    padding: 2rem 2rem 2rem 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 0;
}

.trust-signal blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.trust-signal cite {
    display: block;
    font-style: normal;
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
}

.insight-box {
    background: #fff8e6;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 700px;
    border-radius: 8px;
    border: 2px solid #ffcc00;
}

.insight-box h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
}

.insight-list {
    list-style: none;
    padding-left: 0;
}

.insight-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.6;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.2rem;
}

.simple-list {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.simple-list li {
    margin-bottom: 0.7rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.service-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #0066cc;
}

.service-card.featured {
    border-color: #0066cc;
    border-width: 3px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #0066cc;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.6;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
}

.service-details .duration {
    color: #666;
    font-size: 0.95rem;
}

.service-details .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.service-select {
    width: 100%;
    background: #0066cc;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.service-select:hover {
    background: #0052a3;
}

.form-container {
    max-width: 700px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.consultation-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid #e5e5e5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    width: 100%;
    background: #0066cc;
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #0052a3;
}

.final-note {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e5e5;
}

.main-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4);
    transition: all 0.2s;
}

.sticky-cta-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.5);
}

.page-header {
    padding: 4rem 2rem 2rem;
    margin: 0 auto;
}

.page-header.narrow {
    max-width: 900px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #0a0a0a;
}

.services-list-detailed {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.service-detail-block {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.service-detail-block.featured {
    border-color: #0066cc;
    border-width: 3px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
}

.badge-large {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #0066cc;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    white-space: nowrap;
}

.service-body p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-body ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-body ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-info-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.contact-block p {
    line-height: 1.7;
}

.contact-block a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #0a0a0a;
}

.faq-item p {
    color: #444;
    line-height: 1.7;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.selected-service-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #0066cc;
}

.service-confirmation {
    font-size: 1.1rem;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.next-steps ol {
    padding-left: 2rem;
}

.next-steps ol li {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary {
    background: #0066cc;
    color: white;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background: #0066cc;
    color: white;
}

.legal-page .content-block {
    max-width: 900px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.last-updated {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .content-block h2 {
        font-size: 1.6rem;
    }

    .inline-cta-box,
    .consultation-form {
        padding: 1.5rem;
    }

    .service-header {
        flex-direction: column;
    }

    .contact-info-section {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}