/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Typography */
h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

h2 {
    font-size: 2.25rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a252f;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

p {
    margin-bottom: 1rem;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: #2563eb;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 5rem 3rem 5rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-left h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.hero-left p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: #2c3e50;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background: #059669;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-service {
    width: 100%;
    padding: 1rem;
    background: #f8fafc;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #2563eb;
    color: #ffffff;
}

/* Split Container Pattern */
.split-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.split-content {
    flex: 1;
    padding-right: 2rem;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

.split-container.reverse .split-content {
    padding-right: 0;
    padding-left: 2rem;
}

/* Trust Block */
.trust-block {
    background: #ffffff;
}

/* Offset Section */
.offset-section {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.offset-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.offset-visual {
    flex: 0 0 45%;
    position: relative;
}

.offset-visual img {
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.offset-content {
    flex: 1;
}

/* Services Showcase */
.services-showcase {
    padding: 6rem 2rem;
    background: #ffffff;
}

.services-showcase h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #64748b;
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    position: relative;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-age {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.service-features span {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #475569;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    margin: 1.5rem 0;
}

/* Testimonial Split */
.testimonial-split {
    padding: 6rem 2rem;
    background: #1e293b;
    color: #ffffff;
}

.testimonial-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.testimonial-visual {
    flex: 0 0 35%;
}

.testimonial-visual img {
    border-radius: 50%;
    width: 280px;
    height: 280px;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

blockquote {
    border: none;
}

blockquote p {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

cite {
    font-style: normal;
    color: #94a3b8;
    font-size: 1.125rem;
}

/* Approach Section */
.approach-section {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.approach-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.approach-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* CTA Split */
.cta-split {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
}

.cta-content p {
    color: #dbeafe;
    font-size: 1.25rem;
}

.cta-action {
    flex: 0 0 auto;
}

.cta-action .btn-large {
    background: #ffffff;
    color: #2563eb;
}

.cta-action .btn-large:hover {
    background: #f8fafc;
}

/* Booking Form Section */
.booking-form-section {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-trust {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid #059669;
}

.form-trust ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.form-trust li {
    margin-bottom: 0.75rem;
    color: #475569;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.main-footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.footer-column a {
    display: block;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #2563eb;
}

.footer-column p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #059669;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #047857;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

.cookie-actions button {
    padding: 0.75rem 1.5rem;
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem 4rem 5rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Story Section */
.story-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Team Split */
.team-split {
    padding: 6rem 2rem;
    background: #ffffff;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.team-content {
    flex: 1;
}

.team-visual {
    flex: 0 0 40%;
}

.team-visual img {
    border-radius: 12px;
}

/* Impact Section */
.impact-section {
    padding: 6rem 2rem;
    background: #1e293b;
    color: #ffffff;
}

.impact-section h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
}

.impact-grid {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.impact-stat p {
    color: #cbd5e1;
    font-size: 1.125rem;
}

.impact-stories {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.story-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.story-card p {
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.story-card cite {
    color: #94a3b8;
}

/* Approach Detail */
.approach-detail {
    padding: 6rem 2rem;
    background: #f8fafc;
}

/* Location Section */
.location-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.location-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.location-intro {
    text-align: center;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #64748b;
}

.location-details {
    max-width: 900px;
    margin: 0 auto;
}

/* CTA Simple */
.cta-simple {
    padding: 5rem 2rem;
    background: #eff6ff;
    text-align: center;
}

.cta-simple h2 {
    margin-bottom: 1rem;
}

.cta-simple p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Services Detail */
.page-header {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 4rem;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-split {
    display: flex;
    align-items: stretch;
}

.service-info {
    flex: 1;
    padding: 3rem;
}

.service-visual {
    flex: 0 0 45%;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.age-badge,
.duration-badge,
.popular-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.age-badge {
    background: #dbeafe;
    color: #1e40af;
}

.duration-badge {
    background: #fef3c7;
    color: #92400e;
}

.popular-badge {
    background: #dcfce7;
    color: #166534;
}

.service-summary {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.service-details h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-details ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.service-details li {
    margin-bottom: 0.75rem;
    color: #475569;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
    margin: 1.5rem 0;
}

.service-detail-card .btn-service {
    margin: 2rem 3rem 3rem;
}

/* Enrolment Process */
.enrolment-process {
    padding: 5rem 2rem;
    background: #ffffff;
}

.enrolment-process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Contact Pages */
.contact-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    text-align: center;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main {
    padding: 6rem 2rem;
    background: #ffffff;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 12px;
    margin-bottom: 2rem;
}

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

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

.contact-item h4 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.contact-item a {
    color: #2563eb;
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin-top: 0.5rem;
}

.response-time {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.location-note {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Contact CTA */
.contact-cta {
    padding: 5rem 2rem;
    background: #ffffff;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 4rem;
    border-radius: 16px;
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #dcfce7 0%, #a7f3d0 100%);
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.lead {
    font-size: 1.25rem;
    color: #64748b;
}

.next-steps {
    padding: 6rem 2rem;
    background: #ffffff;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.thanks-info {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.info-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.info-content {
    flex: 1;
}

.info-visual {
    flex: 0 0 40%;
}

.info-visual img {
    border-radius: 12px;
}

.contact-reminder {
    padding: 4rem 2rem;
    background: #ffffff;
    text-align: center;
}

.contact-reminder h2 {
    margin-bottom: 1rem;
}

.contact-reminder p {
    font-size: 1.125rem;
    color: #64748b;
}

.contact-reminder a {
    color: #2563eb;
    text-decoration: underline;
}

.thanks-cta {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.thanks-cta .cta-box {
    background: #ffffff;
    border: 2px solid #e2e8f0;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.legal-content h1 {
    margin-bottom: 1rem;
}

.updated {
    color: #64748b;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: #1e293b;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

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

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content strong {
    color: #1e293b;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookie-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.cookie-table td {
    color: #475569;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-split,
    .split-container,
    .offset-container,
    .testimonial-container,
    .cta-container,
    .form-split,
    .service-split,
    .contact-split,
    .info-split,
    .team-container {
        flex-direction: column;
    }

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

    .hero-left,
    .split-content,
    .offset-content {
        padding: 3rem 2rem;
    }

    .split-container.reverse .split-content {
        padding-left: 2rem;
    }

    .service-info {
        padding: 2rem;
    }

    .service-detail-card .btn-service {
        margin: 2rem;
    }

    .process-steps {
        flex-direction: column;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .approach-item,
    .value-card,
    .faq-item,
    .step-card {
        flex: 1 1 100%;
    }

    .impact-grid,
    .impact-stories {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-left h1 {
        font-size: 2.25rem;
    }

    .hero-left p {
        font-size: 1.1rem;
    }

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

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

    .cookie-actions button {
        width: 100%;
    }

    .testimonial-visual img {
        width: 200px;
        height: 200px;
    }

    blockquote p {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .form-container {
        padding: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .sticky-cta {
        left: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        text-align: center;
        width: 100%;
    }
}
