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

:root {
    --color-primary: #1a2332;
    --color-secondary: #2d3e50;
    --color-accent: #4a90e2;
    --color-text: #1a1a1a;
    --color-text-light: #4a5568;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-border: #e2e8f0;
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-serif: Georgia, "Times New Roman", serif;
    --spacing-base: 1rem;
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #78350f;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #fbbf24;
}

.main-nav {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
    position: sticky;
    top: 37px;
    z-index: 999;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.editorial-layout {
    width: 100%;
}

.story-flow {
    width: 100%;
}

.hero-editorial {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content-narrow {
    max-width: 720px;
    margin: -120px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.hero-content-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 24px;
    background-color: var(--color-bg);
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--color-text-light);
    font-weight: 400;
}

.page-header {
    padding: 80px 24px 40px;
    background-color: var(--color-bg-alt);
}

.page-header .narrow-text {
    max-width: 720px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.content-block {
    padding: 60px 24px;
}

.narrow-text {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-text h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 48px;
    margin-bottom: 20px;
}

.narrow-text h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--color-secondary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.narrow-text h4 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--color-secondary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.narrow-text p {
    margin-bottom: 20px;
}

.narrow-text a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.narrow-text a:hover {
    opacity: 0.8;
}

.image-inline {
    margin: 48px 0;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.editorial-list {
    margin: 24px 0;
    padding-left: 28px;
    list-style-type: disc;
}

.editorial-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

blockquote {
    margin: 40px 0;
    padding: 24px 32px;
    background-color: var(--color-bg-alt);
    border-left: 4px solid var(--color-accent);
    font-style: italic;
    font-size: 20px;
}

blockquote p {
    margin-bottom: 12px;
}

blockquote cite {
    display: block;
    font-size: 16px;
    font-style: normal;
    color: var(--color-text-light);
    margin-top: 12px;
}

.inline-cta {
    margin: 40px 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    color: var(--color-accent);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--color-accent);
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.cta-button-inline {
    display: inline-block;
    background-color: var(--color-accent);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button-inline:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.insight-box {
    background-color: #eff6ff;
    border: 2px solid #bfdbfe;
    border-radius: 8px;
    padding: 32px;
    margin: 40px 0;
}

.insight-box h3 {
    font-size: 22px;
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 16px;
}

.insight-box p {
    margin-bottom: 16px;
}

.insight-box p:last-child {
    margin-bottom: 0;
}

.profile-card {
    background-color: var(--color-bg-alt);
    padding: 24px;
    margin: 24px 0;
    border-radius: 6px;
    border-left: 4px solid var(--color-accent);
}

.profile-card h4 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.profile-card p {
    margin-bottom: 0;
}

.trust-section {
    background-color: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 8px;
    padding: 32px;
    margin: 48px 0;
}

.trust-section h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.service-reveal {
    margin: 48px 0;
}

.service-item-editorial {
    background-color: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.service-item-editorial:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-item-editorial h4 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.price-editorial {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent);
    margin: 16px 0 20px;
}

.service-cta {
    display: inline-block;
    background-color: var(--color-accent);
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.form-section-editorial {
    background-color: var(--color-bg-alt);
    padding: 80px 24px;
    margin-top: 60px;
}

.editorial-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: var(--font-primary);
    border: 2px solid var(--color-border);
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.submit-btn {
    background-color: var(--color-accent);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.disclaimer-section {
    background-color: #fef3c7;
    padding: 40px 24px;
    margin-top: 60px;
}

.disclaimer-text {
    color: #78350f;
    font-size: 14px;
    line-height: 1.6;
}

.footer-editorial {
    background-color: var(--color-primary);
    color: white;
    padding: 60px 24px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-content p {
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--color-accent);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #3b7bc7;
}

.cookie-btn.reject {
    background-color: #6b7280;
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #4b5563;
}

.service-detail-card {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    margin-top: 0;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent);
    margin: 16px 0;
}

.service-detail-cta {
    display: inline-block;
    background-color: var(--color-accent);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.service-detail-cta:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-section-bottom {
    background-color: var(--color-bg-alt);
    padding: 48px 32px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}

.cta-section-bottom h2 {
    margin-top: 0;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--color-accent);
    color: white;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-info-section {
    margin-top: 40px;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.contact-additional {
    background-color: var(--color-bg-alt);
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-cta {
    background-color: #eff6ff;
    padding: 32px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.thanks-section {
    padding: 100px 24px;
    background-color: var(--color-bg-alt);
}

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

.thanks-content h1 {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.thanks-details,
.thanks-service-info,
.thanks-next-steps {
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
    text-align: left;
}

.thanks-cta {
    margin-top: 48px;
}

.legal-intro {
    font-size: 14px;
    color: var(--color-text-light);
    font-style: italic;
}

.legal-content {
    font-size: 16px;
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .hero-content-narrow h1 {
        font-size: 32px;
        padding: 24px;
        margin-top: -80px;
    }

    .lead-text {
        font-size: 18px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .narrow-text h2 {
        font-size: 26px;
    }

    .narrow-text h3 {
        font-size: 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-image-wrapper {
        height: 400px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .footer-nav {
        flex-direction: column;
        gap: 16px;
    }

    .service-image-wrapper {
        height: 300px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }
}
