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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #1a3d52;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 17px;
}

.nav-minimal {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.editorial-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.article-hero {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.article-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    line-height: 1.5;
    font-weight: 400;
}

.article-hero img {
    width: 100%;
    height: auto;
    margin-top: 2rem;
    border-radius: 4px;
}

.story-intro {
    margin: 3rem 0;
}

.story-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
    color: var(--text-dark);
}

.story-intro p em {
    font-style: italic;
    color: var(--primary-color);
}

.story-intro img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

.insight-block {
    margin: 4rem 0;
    padding: 2.5rem 0;
}

.insight-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.insight-content h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2.5rem 0 1rem 0;
    color: var(--text-dark);
    font-weight: 600;
}

.insight-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
    color: var(--text-dark);
}

.insight-content img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

.inline-cta {
    margin: 2rem 0;
    padding: 1.5rem 0;
}

.cta-link {
    color: var(--primary-color);
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.2rem;
    transition: color 0.2s;
}

.cta-link:hover {
    color: var(--secondary-color);
}

.cta-link-inline {
    color: var(--primary-color);
    font-size: 1rem;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.2rem;
    transition: color 0.2s;
    display: inline-block;
    margin-top: 1rem;
}

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

.methodology-section {
    margin: 4rem 0;
}

.methodology-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.methodology-section h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2.5rem 0 1rem 0;
    color: var(--text-dark);
    font-weight: 600;
}

.methodology-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.method-visual {
    margin: 2.5rem 0;
}

.method-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.age-specific-content {
    margin-top: 2rem;
}

.evidence-section {
    margin: 4rem 0;
    padding: 2.5rem 0;
}

.evidence-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.evidence-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
}

blockquote p {
    margin-bottom: 0.8rem;
}

cite {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--text-light);
}

.trust-builder {
    margin: 4rem 0;
}

.trust-builder h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.trust-builder p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.trust-builder img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

.programme-list {
    margin-top: 2.5rem;
}

.programme-item {
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    background: var(--background-light);
}

.programme-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.programme-age {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.programme-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.select-service {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.select-service:hover {
    background: var(--secondary-color);
}

.commitment-section {
    margin: 4rem 0;
    padding: 2.5rem 0;
}

.commitment-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.commitment-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.commitment-section img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

.enrollment-section {
    margin: 4rem 0;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.enrollment-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.enrollment-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.enrollment-form {
    max-width: 540px;
    margin: 2rem auto;
    text-align: left;
}

.selected-service-display {
    background: var(--background-light);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
    display: none;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
}

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

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.cta-button:hover {
    background: var(--secondary-color);
}

.cta-button-alt {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: opacity 0.2s;
}

.cta-button-alt:hover {
    opacity: 0.85;
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.cta-button-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.final-thought {
    margin: 4rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
}

.final-thought p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
    color: var(--text-dark);
}

.final-cta {
    margin-top: 2rem;
    text-align: center;
}

.editorial-footer {
    background: var(--background-light);
    border-top: 1px solid var(--border-color);
    margin-top: 5rem;
}

.footer-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem 1.5rem;
    text-align: center;
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-light);
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

.programme-detail-section {
    margin: 4rem 0;
}

.programme-detail-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.programme-detail-section img {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

.programme-card {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 3rem;
    background: var(--white);
}

.programme-header {
    background: var(--background-light);
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.programme-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.programme-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.programme-body {
    padding: 2rem;
}

.programme-body h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
    color: var(--text-dark);
    font-weight: 600;
}

.programme-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.programme-body ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.programme-body li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.delivery-info {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: italic;
    background: var(--background-light);
    padding: 1rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.contact-note {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 2rem;
    color: var(--text-medium);
    text-align: center;
}

.contact-content {
    margin: 2rem 0;
}

.contact-intro {
    margin-bottom: 3rem;
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-details {
    margin: 3rem 0;
}

.contact-block {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 4px;
}

.contact-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.contact-faq {
    margin: 4rem 0;
}

.contact-faq h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-content {
    margin: 3rem 0;
}

.thanks-message {
    text-align: left;
}

.thanks-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    background: var(--background-light);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
}

.confirmation-highlight p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.next-steps {
    margin: 2rem 0 2rem 1.5rem;
}

.next-steps li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.preparation-block,
.contact-reminder {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 4px;
}

.preparation-block h2,
.contact-reminder h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.preparation-block p,
.contact-reminder p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.contact-reminder a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.thanks-cta {
    margin: 4rem 0 2rem 0;
    text-align: center;
}

.thanks-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.policy-page .policy-content {
    margin: 2rem 0;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    color: var(--primary-color);
    font-weight: 700;
}

.policy-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem 0;
    color: var(--text-dark);
    font-weight: 600;
}

.policy-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.policy-content ul,
.policy-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.policy-content li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.policy-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    font-size: 0.95rem;
}

.principle-block {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.principle-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.principle-block p {
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

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

    .article-hero h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .insight-content h2,
    .methodology-section h2,
    .evidence-section h2,
    .trust-builder h2 {
        font-size: 1.6rem;
    }

    .programme-item {
        padding: 1.5rem;
    }

    .price {
        font-size: 1.5rem;
    }
}