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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e8914b;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #6b9fb5;
    --spacing-small: 1rem;
    --spacing-medium: 2rem;
    --spacing-large: 4rem;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background-color: #d17a35;
}

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

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

.nav-editorial {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.editorial-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-narrow {
    max-width: 700px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.headline-large {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.subheadline {
    font-size: 1.3rem;
    color: var(--text-light);
    font-family: Georgia, serif;
    font-weight: 400;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-narrow p {
    margin-bottom: 1.5rem;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.section-title {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.problem-list {
    margin: 1.5rem 0 1.5rem 2rem;
}

.problem-list li {
    margin-bottom: 0.75rem;
}

.inline-cta {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.inline-cta:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.visual-break {
    width: 100%;
    margin: 4rem 0;
}

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

.image-caption {
    text-align: center;
    padding: 1rem;
    background-color: var(--bg-light);
}

.image-caption p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin: 0;
}

.insight-box {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.insight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.spaced-section {
    margin-top: 4rem;
}

.highlighted-section {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    margin: 4rem 0;
    border-radius: 8px;
}

.benefits-narrative p {
    margin-bottom: 1.5rem;
}

.service-preview {
    margin-top: 4rem;
}

.service-card-inline {
    margin: 2rem 0;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-white);
}

.service-card-inline h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card-inline p {
    margin-bottom: 0.5rem;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.testimonial-section {
    margin: 4rem auto;
}

.testimonial-editorial {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    font-style: italic;
    color: var(--text-light);
    margin: 2.5rem 0;
}

.testimonial-editorial p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.testimonial-editorial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cta-full-width {
    width: 100%;
    background-color: var(--primary-color);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.cta-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.cta-content-narrow h2 {
    color: var(--bg-white);
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-content-narrow p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #d17a35;
    transform: translateY(-2px);
}

.cta-button-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.cta-button-primary:hover {
    background-color: #234d63;
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.cta-button-secondary:hover {
    background-color: #d17a35;
    transform: translateY(-2px);
}

.form-section {
    margin: 4rem auto;
}

.enrollment-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    padding: 1.1rem 3rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #234d63;
    transform: translateY(-2px);
}

.final-note {
    margin: 4rem auto;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.closing-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-light);
}

.footer-editorial {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    margin-top: 5rem;
}

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

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.service-full {
    margin: 3rem 0;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-white);
}

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

.service-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.age-badge {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-body h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-list {
    margin: 1rem 0 1rem 1.5rem;
}

.service-list li {
    margin-bottom: 0.75rem;
}

.enrollment-cta {
    text-align: center;
    margin: 4rem auto;
}

.contact-info-block {
    margin: 2rem 0;
}

.contact-detail {
    margin: 2.5rem 0;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.detail-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

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

.thanks-list {
    text-align: left;
    max-width: 500px;
    margin: 2rem auto;
}

.thanks-list li {
    margin-bottom: 0.75rem;
}

.next-steps {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-selected {
    font-size: 1.1rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    margin: 2rem 0;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .headline-large {
        font-size: 2rem;
    }

    .subheadline {
        font-size: 1.1rem;
    }

    .content-narrow {
        padding: 0 1.5rem;
    }

    .hero-narrow {
        margin: 2rem auto;
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-content-narrow h2 {
        font-size: 1.8rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-detailed {
        padding: 0 1rem;
    }

    .service-full {
        padding: 1.5rem;
    }

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

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .thanks-cta {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}