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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a90c7;
    --accent-color: #f4a261;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --border-color: #ddd;
    --success-color: #52b788;
    --white: #ffffff;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.centered {
    text-align: center;
}

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-bottom-color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-split {
    padding: 80px 0;
}

.split-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.split-left h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.split-right img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(244, 162, 97, 0.4);
    color: var(--white);
}

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

.sticky-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.05);
}

.intro-narrative {
    padding: 60px 0;
}

.intro-narrative h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.intro-narrative p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.bg-light {
    background: var(--light-color);
}

.bg-accent {
    background: var(--accent-color);
    color: var(--white);
}

.bg-accent h2,
.bg-accent h3 {
    color: var(--white);
}

.split-alternate {
    padding: 80px 0;
}

.card-services {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 2px solid var(--accent-color);
}

.card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.card-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.age-range {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-select-service {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.trust-builder {
    padding: 80px 0;
}

.trust-builder h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.quote {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.cta-inline {
    padding: 80px 0;
}

.cta-inline h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-inline p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-large {
    display: inline-block;
    background: var(--white);
    color: var(--accent-color);
    padding: 18px 45px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-large:hover {
    transform: scale(1.05);
    color: var(--accent-color);
}

.benefits-reveal {
    padding: 80px 0;
}

.benefits-reveal h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.benefits-list strong {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.benefits-list span {
    color: var(--text-light);
}

.form-section {
    padding: 80px 0;
    background: var(--light-color);
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--dark-color);
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 18px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.selected-service-box {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

.selected-service-box p {
    margin-bottom: 8px;
}

.btn-change {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

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

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

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

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

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

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column p {
    color: #aaa;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #aaa;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #aaa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

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

.btn-cookie:hover {
    opacity: 0.8;
}

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-align: center;
}

.hero-subtitle {
    font-size: 20px;
    text-align: center;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
}

.mission-statement {
    padding: 80px 0;
}

.large-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.approach-section {
    padding: 80px 0;
}

.approach-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.approach-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 250px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.values-section {
    padding: 80px 0;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 30px;
}

.values-list strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.impact-section {
    padding: 80px 0;
}

.impact-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.cta-section {
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-block {
    padding: 60px 0;
}

.service-header {
    margin-bottom: 25px;
}

.service-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.age-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.popular-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.service-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.included-list {
    list-style: none;
    margin-bottom: 30px;
}

.included-list li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
}

.included-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.btn-service {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: 20px;
}

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

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info,
.contact-form-container {
    flex: 1;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.form-note {
    background: var(--light-color);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    border-left: 3px solid var(--accent-color);
}

.map-section {
    padding: 80px 0;
}

.map-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.map-section p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.map-placeholder {
    background: var(--white);
    padding: 100px 40px;
    text-align: center;
    border-radius: 8px;
    border: 2px dashed var(--border-color);
}

.faq-preview {
    padding: 80px 0;
}

.faq-preview h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-color);
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.thanks-hero {
    padding: 80px 0 40px;
}

.success-icon {
    color: var(--success-color);
    text-align: center;
    margin-bottom: 30px;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
}

.thanks-content {
    padding: 40px 0 80px;
}

.thanks-box {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.thanks-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.next-steps {
    margin-bottom: 30px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    background: var(--accent-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-confirm {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
    margin-top: 30px;
}

.service-confirm p {
    margin-bottom: 8px;
}

.thanks-actions {
    margin-bottom: 40px;
}

.thanks-actions h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.action-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-link {
    background: var(--light-color);
    padding: 15px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.action-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.thanks-note {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-section {
    padding: 80px 0;
}

.testimonial-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

.testimonial-single {
    max-width: 700px;
    margin: 0 auto;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

.legal-page li {
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .split-container {
        flex-direction: column;
        gap: 40px;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .split-left h1 {
        font-size: 36px;
    }

    .split-left h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial {
        flex: 1 1 100%;
    }

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .btn-cookie {
        width: 100%;
    }

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

    .sticky-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .approach-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .split-left h1 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .legal-page h1 {
        font-size: 32px;
    }
}