/* 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: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    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;
    flex: 1;
}

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

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

.btn-cookie-accept {
    background: #10b981;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

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

.hero-content-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content-left p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-visual-right {
    flex: 1;
    height: 85vh;
    overflow: hidden;
}

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

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

.page-hero-split .hero-content-left {
    padding: 3rem;
}

.page-hero-split .hero-visual-right {
    height: 60vh;
}

/* Intro Split - Reverse */
.intro-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.intro-visual {
    flex: 1;
    padding: 2rem;
}

.intro-visual img {
    width: 100%;
    border-radius: 8px;
}

.intro-content {
    flex: 1;
    padding: 2rem 3rem;
}

/* Value Proposition */
.value-proposition {
    background: #f9fafb;
    padding: 5rem 2rem;
}

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

.value-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.value-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Problem Split */
.problem-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-content {
    flex: 1;
    padding: 2rem 3rem;
}

.problem-stats {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

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

.stat-label {
    font-size: 1rem;
    color: #4b5563;
}

/* Outcomes Section */
.outcomes-section {
    background: #1f2937;
    color: #ffffff;
    padding: 5rem 2rem;
}

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

.outcomes-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.outcomes-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.outcome-block {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #374151;
    border-radius: 8px;
}

.outcome-block h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.testimonial-content {
    flex: 1;
    padding: 3rem;
    background: #eff6ff;
}

.testimonial-content blockquote {
    border: none;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #2563eb;
}

.testimonial-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

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

/* Services Preview */
.services-preview {
    padding: 5rem 2rem;
    background: #f9fafb;
}

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

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

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.service-age {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

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

.btn-select-service {
    margin-top: auto;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #1d4ed8;
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #059669;
}

/* Methodology Split */
.methodology-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.method-visual {
    flex: 1;
    padding: 2rem;
}

.method-visual img {
    width: 100%;
    border-radius: 8px;
}

.method-content {
    flex: 1;
    padding: 2rem 3rem;
}

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

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

.location-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.location-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.location-info {
    flex: 1;
}

.location-map {
    flex: 1;
}

.location-map img {
    border-radius: 8px;
}

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

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary,
.btn-primary-large {
    background: #2563eb;
    color: #ffffff;
}

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

.btn-primary-large {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

.link-inline {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.link-inline:hover {
    color: #1d4ed8;
    gap: 0.5rem;
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #10b981;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.site-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

/* Story Split */
.story-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.story-content {
    flex: 1;
    padding: 2rem 3rem;
}

.story-visual {
    flex: 1;
    padding: 2rem;
}

.story-visual img {
    border-radius: 8px;
}

/* Mission Section */
.mission-section {
    background: #eff6ff;
    padding: 5rem 2rem;
}

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

.mission-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mission-statement {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mission-values {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Approach Split */
.approach-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.approach-visual {
    flex: 1;
    padding: 2rem;
}

.approach-visual img {
    border-radius: 8px;
}

.approach-content {
    flex: 1;
    padding: 2rem 3rem;
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.team-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Impact Split */
.impact-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: #f9fafb;
}

.impact-content {
    flex: 1;
    padding: 2rem 3rem;
}

.impact-list {
    margin: 2rem 0;
}

.impact-list li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.impact-visual {
    flex: 1;
    padding: 2rem;
}

.impact-visual img {
    border-radius: 8px;
}

/* Commitment Section */
.commitment-section {
    padding: 5rem 2rem;
}

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

.commitment-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.commitment-split {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.commitment-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #eff6ff;
    border-radius: 8px;
}

.commitment-block h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* CTA About */
.cta-about {
    background: #2563eb;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-about .cta-content h2 {
    color: #ffffff;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 2rem;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1.5;
}

.service-detail-content h2 {
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin: 1.5rem 0;
}

.learning-outcomes,
.includes-list {
    margin: 1rem 0 1.5rem;
}

.service-detail-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail-image img {
    border-radius: 8px;
    width: 100%;
}

.service-pricing-box {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #eff6ff;
    border-radius: 8px;
    margin: 2rem 0;
}

.price-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-detail {
    font-size: 0.875rem;
    color: #6b7280;
}

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

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

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    color: #2563eb;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

/* CTA Services */
.cta-services {
    background: #1f2937;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-services .cta-content h2 {
    color: #ffffff;
}

/* Contact Info Section */
.contact-info-section {
    padding: 3rem 2rem;
}

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

.contact-split {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

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

.contact-note {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    width: 100%;
}

/* Reasons Contact */
.reasons-contact {
    background: #f9fafb;
    padding: 5rem 2rem;
}

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

.reasons-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.reason-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.reason-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Response Times */
.response-times {
    padding: 4rem 2rem;
}

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

.response-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.response-split {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.response-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #eff6ff;
    border-radius: 8px;
}

.response-block h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Location Context */
.location-context {
    background: #f9fafb;
    padding: 4rem 2rem;
}

.location-split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.location-text {
    flex: 1;
}

.location-image {
    flex: 1;
}

.location-image img {
    border-radius: 8px;
}

/* Next Steps Section */
.next-steps-section {
    padding: 4rem 2rem;
    text-align: center;
}

.next-steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.next-steps-container h2 {
    margin-bottom: 1rem;
}

.next-steps-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 2rem;
    text-align: center;
}

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

.success-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

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

.thanks-message {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 3rem;
}

.thanks-details {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.next-steps-list li {
    margin-bottom: 1rem;
}

.thanks-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #eff6ff;
    border-radius: 8px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.selected-service-note {
    padding: 1rem;
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* Preparation Section */
.preparation-section {
    background: #f9fafb;
    padding: 4rem 2rem;
}

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

.prep-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.prep-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.prep-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.prep-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Legal Page */
.legal-page {
    padding: 4rem 2rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

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

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

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

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

.cookies-table th {
    background: #f9fafb;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .page-hero-split,
    .intro-split,
    .problem-split,
    .testimonial-split,
    .methodology-split,
    .story-split,
    .approach-split,
    .impact-split,
    .location-split,
    .contact-split,
    .location-split-content,
    .service-detail-card {
        flex-direction: column;
    }

    .hero-content-left {
        padding: 2rem 1.5rem;
    }

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

    .hero-visual-right,
    .page-hero-split .hero-visual-right {
        height: 400px;
    }

    .value-grid,
    .outcomes-split,
    .mission-values,
    .team-grid,
    .commitment-split,
    .faq-grid,
    .reasons-grid,
    .response-split,
    .prep-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

    .next-steps-actions,
    .thanks-actions {
        flex-direction: column;
    }

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }
}
