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

:root {
    --primary-color: #2c5f6f;
    --secondary-color: #e87d4e;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-blue: #4a90a4;
    --accent-warm: #d4a574;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.96);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

.btn-cookie-accept:hover {
    background: #d66d3e;
}

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

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

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

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    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;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.editorial-main {
    max-width: 100%;
}

.hero-editorial {
    padding: 3rem 2rem 4rem;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 2rem;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-section {
    padding: 3rem 2rem;
}

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

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

.content-section p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.inline-image {
    margin: 3rem 0;
}

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

.testimonial-inline {
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
}

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

blockquote {
    margin: 0;
}

.cta-inline {
    margin: 2.5rem 0;
    text-align: left;
}

.btn-text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-text-link:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

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

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 111, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-primary-large {
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background: #d66d3e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 125, 78, 0.4);
}

.services-preview {
    margin: 4rem 0;
}

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

.service-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

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

.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin: 4rem 0;
}

.final-cta h2,
.final-cta h3 {
    color: white;
    margin-top: 0;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.booking-section {
    background: var(--bg-light);
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.booking-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

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

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

.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;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 111, 0.1);
}

.btn-submit {
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d66d3e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 125, 78, 0.4);
}

.page-header {
    padding: 3rem 2rem 2rem;
    background: var(--bg-light);
}

.page-lead {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-top: 1rem;
}

.service-detailed {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

.service-detailed:last-child {
    border-bottom: none;
}

.service-header {
    margin-bottom: 2rem;
}

.service-age {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.service-description {
    margin: 2rem 0;
}

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

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

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

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

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

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

.faq-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.thanks-section {
    padding: 4rem 2rem;
}

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

.thanks-lead {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-top: 1.5rem;
}

.thanks-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-programme {
    text-align: center;
}

.programme-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

.step {
    background: white;
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.step h3 {
    margin-top: 0;
    color: var(--primary-color);
}

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

.action-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.contact-reminder {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.contact-reminder h3 {
    margin-top: 0;
}

.legal-content {
    font-size: 1rem;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
}

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

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

.footer-editorial {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.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 ul {
    list-style: none;
    padding: 0;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.cta-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    margin-top: 0;
}

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

    .nav-links {
        gap: 1.5rem;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .action-links {
        flex-direction: column;
    }

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

    .testimonial-inline {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .final-cta {
        padding: 2rem;
    }
}

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-primary-large {
        width: 100%;
        text-align: center;
    }
}