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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #e67e22;
    --accent-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

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-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-menu li a {
    font-weight: 500;
    transition: color 0.2s ease;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

.hero-immersive {
    margin-top: 64px;
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.92), rgba(39, 174, 96, 0.88)),
                url('data:image/svg+xml,<svg width="1200" height="800" xmlns="http://www.w3.org/2000/svg"><rect fill="%231a4d7a" width="1200" height="800"/><circle cx="200" cy="150" r="180" fill="%2327ae60" opacity="0.1"/><circle cx="900" cy="600" r="220" fill="%23e67e22" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(39, 174, 96, 0.1), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 42px;
    background: var(--secondary-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(230, 126, 34, 0.4);
}

.cta-hero:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
}

.story-intro {
    padding: 100px 20px;
    background: var(--bg-white);
}

.lead-text {
    font-size: 24px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-weight: 400;
}

.story-intro p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.problem-amplifier {
    padding: 120px 20px;
    background: var(--bg-light);
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-left {
    flex: 1;
}

.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.split-left h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: var(--primary-color);
    line-height: 1.3;
}

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

.emphasis {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 32px;
}

.stat-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 54px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.insight-reveal {
    padding: 100px 20px;
    background: white;
}

.insight-reveal h2 {
    font-size: 40px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.insight-reveal p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.cta-inline {
    margin-top: 40px;
}

.cta-inline a {
    display: inline-block;
    padding: 16px 36px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-inline a:hover {
    background: #229954;
    transform: translateY(-2px);
}

.trust-builder {
    padding: 100px 20px;
    background: var(--bg-light);
}

.trust-builder h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.trust-elements {
    display: flex;
    gap: 40px;
}

.trust-item {
    flex: 1;
    background: white;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.testimonial-narrative {
    padding: 100px 20px;
    background: linear-gradient(to bottom, white, var(--bg-light));
}

.testimonial-narrative blockquote {
    background: white;
    padding: 40px;
    margin-bottom: 36px;
    border-left: 6px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-narrative p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-narrative cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.method-explanation {
    padding: 120px 20px;
    background: var(--bg-white);
}

.method-explanation h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.method-flow {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
}

.method-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 24px;
}

.method-step h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.method-step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.cta-section-block {
    text-align: center;
    margin-top: 40px;
}

.cta-btn-large {
    display: inline-block;
    padding: 20px 50px;
    background: var(--primary-color);
    color: white;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-hover);
}

.cta-btn-large:hover {
    background: #15395c;
    transform: translateY(-2px);
}

.benefits-stack {
    padding: 100px 20px;
    background: var(--bg-light);
}

.benefits-stack h2 {
    font-size: 40px;
    margin-bottom: 44px;
    color: var(--primary-color);
}

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

.benefits-list li {
    font-size: 19px;
    line-height: 1.8;
    padding: 18px 0 18px 40px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

.social-proof-layer {
    padding: 100px 20px;
    background: white;
    text-align: center;
}

.proof-stat {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.proof-highlights {
    display: flex;
    gap: 48px;
    justify-content: center;
}

.proof-item {
    flex: 1;
    max-width: 300px;
}

.highlight-number {
    display: block;
    font-size: 58px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.proof-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
}

.urgency-context {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.05), rgba(230, 126, 34, 0.05));
}

.urgency-context h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.urgency-context p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-inline-urgent {
    margin-top: 44px;
}

.cta-inline-urgent a {
    display: inline-block;
    padding: 18px 40px;
    background: var(--secondary-color);
    color: white;
    font-size: 19px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-inline-urgent a:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.pricing-reveal {
    padding: 120px 20px;
    background: var(--bg-light);
}

.pricing-reveal h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 280px;
    max-width: 380px;
    background: white;
    padding: 36px 28px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 3px solid var(--secondary-color);
}

.badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.badge-popular {
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.programme-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 24px;
    flex-grow: 1;
}

.price {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.select-service:hover {
    background: #15395c;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 20px;
    background: white;
}

.form-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.enrollment-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 44px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

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

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

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

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.final-reassurance {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.final-reassurance h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.final-reassurance p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-content span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.sticky-btn {
    padding: 14px 32px;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #d35400;
}

.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: white;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: white;
    padding: 24px 20px;
    z-index: 10000;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    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;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #229954;
}

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

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

.page-hero {
    margin-top: 64px;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.about-content h2 {
    font-size: 36px;
    margin: 48px 0 24px;
    color: var(--primary-color);
}

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

.values-list {
    list-style: none;
    margin: 32px 0;
}

.values-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 28px;
    position: relative;
}

.values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 28px;
}

.cta-about {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.cta-about h2 {
    font-size: 34px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.services-intro {
    padding: 60px 20px;
    background: white;
}

.services-detailed {
    padding: 60px 20px;
    background: var(--bg-light);
}

.service-block {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.service-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    flex: 1;
}

.service-age {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
    padding: 6px 14px;
    background: var(--bg-light);
    border-radius: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.service-content h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: var(--primary-color);
}

.service-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.service-content ul li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-cta {
    display: inline-block;
    margin-top: 24px;
    padding: 16px 36px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #15395c;
    transform: translateY(-2px);
}

.services-faq {
    padding: 80px 20px;
    background: white;
}

.services-faq h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

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

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

.services-cta-final {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.services-cta-final h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.services-cta-final p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.contact-content {
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.contact-item {
    margin-bottom: 32px;
}

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

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 0;
}

.contact-item a {
    color: var(--primary-color);
}

.response-time {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
}

.response-time p {
    font-size: 16px;
    margin: 0;
}

.contact-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-cta {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 32px;
}

.thanks-hero {
    margin-top: 64px;
    padding: 80px 20px;
    background: var(--bg-light);
}

.thanks-content {
    background: white;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

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

.thanks-message {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.thanks-details {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
    display: none;
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.thanks-details p {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}

.step-num {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    flex-shrink: 0;
}

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

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-cta-block {
    text-align: center;
    margin-bottom: 48px;
}

.thanks-cta-block p {
    font-size: 18px;
    margin-bottom: 24px;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.thanks-link {
    padding: 14px 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-link:hover {
    background: #15395c;
    transform: translateY(-2px);
}

.thanks-contact {
    text-align: center;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
}

.thanks-contact h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.thanks-contact p {
    font-size: 17px;
}

.legal-content {
    padding: 80px 20px;
}

.legal-content h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    color: var(--primary-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 28px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-date {
    font-size: 16px;
    color: var(--text-light);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: white;
    box-shadow: var(--shadow);
}

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

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

.cookies-table td {
    font-size: 16px;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: white;
        flex-direction: column;
        padding: 40px;
        gap: 24px;
        transition: left 0.3s ease;
    }

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

    .hamburger {
        display: flex;
    }

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

    .trust-elements {
        flex-direction: column;
    }

    .method-flow {
        flex-direction: column;
    }

    .proof-highlights {
        flex-direction: column;
        gap: 32px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .contact-layout {
        flex-direction: column;
    }

    .sticky-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-subtext {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .thanks-content {
        padding: 40px 30px;
    }

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

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

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