/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #dbeafe;
    --color-secondary: #60a5fa;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-border: #e2e8f0;
    --color-success: #22c55e;
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

img, svg {
    max-width: 100%;
    height: auto;
}

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

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
}

.btn-secondary {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-color: var(--color-primary-light);
}

.btn-secondary:hover {
    background-color: #bfdbfe;
    border-color: #bfdbfe;
    color: var(--color-primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-outline:hover {
    background-color: var(--color-bg-alt);
    border-color: var(--color-text-light);
    color: var(--color-text);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.nav {
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text);
}

.logo:hover {
    color: var(--color-text);
}

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

.nav-menu a {
    color: var(--color-text-light);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 16px 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-primary-light) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
}

.hero-illustration {
    width: 100%;
    max-width: 400px;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }
}

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background-color: var(--color-bg-alt);
    text-align: center;
}

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

.page-hero p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.legal-hero {
    padding: 40px 0;
}

.legal-hero p {
    font-size: 1rem;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background-color: var(--color-primary);
}

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

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

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

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
}

.philosophy-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    margin-bottom: 24px;
}

.philosophy-content p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.philosophy-visual {
    flex: 1;
}

@media (max-width: 768px) {
    .philosophy-section .container {
        flex-direction: column;
    }

    .philosophy-visual {
        order: -1;
    }
}

/* Services Highlight */
.services-highlight {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

.services-highlight h2 {
    text-align: center;
    margin-bottom: 48px;
}

.services-highlight .section-tag {
    display: block;
    text-align: center;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background-color: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-light);
}

.services-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%;
    }
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-section .section-tag,
.process-section h2 {
    text-align: center;
}

.process-section .section-tag {
    display: block;
}

.process-section h2 {
    margin-bottom: 48px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.process-step {
    flex: 1 1 calc(25% - 24px);
    min-width: 220px;
    text-align: center;
    padding: 24px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .process-step {
        flex: 1 1 100%;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

.testimonials-section .section-tag,
.testimonials-section h2 {
    text-align: center;
}

.testimonials-section .section-tag {
    display: block;
}

.testimonials-section h2 {
    margin-bottom: 48px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background-color: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-text-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
}

.industries-section .section-tag,
.industries-section h2 {
    text-align: center;
}

.industries-section .section-tag {
    display: block;
}

.industries-section h2 {
    margin-bottom: 48px;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section .section-tag,
.faq-section h2 {
    text-align: center;
}

.faq-section .section-tag {
    display: block;
}

.faq-section h2 {
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--color-text-light);
}

/* Insights Section */
.insights-section {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

.insights-section .section-tag,
.insights-section h2 {
    text-align: center;
}

.insights-section .section-tag {
    display: block;
}

.insights-section h2 {
    margin-bottom: 48px;
}

.insights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.insight-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background-color: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.insight-card h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.insight-card p {
    color: var(--color-text-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.cta-content {
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.cta-section .btn-primary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
}

.cta-section.alt {
    background: var(--color-bg-alt);
}

.cta-section.alt .cta-content {
    color: var(--color-text);
}

.cta-section.alt .cta-content h2 {
    color: var(--color-text);
}

.cta-section.alt .btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* Story Section */
.story-section {
    padding: 80px 0;
}

.story-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    margin-bottom: 24px;
}

.story-content p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.story-visual {
    flex: 1;
}

@media (max-width: 768px) {
    .story-section .container {
        flex-direction: column;
    }
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

.values-section .section-tag,
.values-section h2 {
    text-align: center;
}

.values-section .section-tag {
    display: block;
}

.values-section h2 {
    margin-bottom: 48px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.value-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background-color: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.value-icon {
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-light);
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-section .section-tag,
.team-section h2 {
    text-align: center;
}

.team-section .section-tag {
    display: block;
}

.team-section h2 {
    margin-bottom: 48px;
}

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

.team-member {
    flex: 1 1 calc(25% - 24px);
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.member-avatar {
    margin-bottom: 20px;
}

.team-member h3 {
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.member-role {
    display: block;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-member p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Milestones Section */
.milestones-section {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

.milestones-section .section-tag,
.milestones-section h2 {
    text-align: center;
}

.milestones-section .section-tag {
    display: block;
}

.milestones-section h2 {
    margin-bottom: 48px;
}

.milestones-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.milestone {
    display: flex;
    gap: 32px;
    padding-bottom: 40px;
    position: relative;
}

.milestone:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background-color: var(--color-border);
}

.milestone-year {
    flex-shrink: 0;
    width: 90px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 700;
    border-radius: var(--radius-md);
}

.milestone-content h3 {
    margin-bottom: 8px;
}

.milestone-content p {
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .milestone {
        flex-direction: column;
        gap: 16px;
    }

    .milestone::before {
        display: none;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
}

.benefits-section .section-tag,
.benefits-section h2 {
    text-align: center;
}

.benefits-section .section-tag {
    display: block;
}

.benefits-section h2 {
    margin-bottom: 48px;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

.benefit-check {
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-item h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--color-text-light);
}

/* Services Main */
.services-main {
    padding: 80px 0;
}

.services-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-detailed {
    display: flex;
    gap: 40px;
    padding: 40px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.service-icon-large {
    flex-shrink: 0;
}

.service-info h2 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

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

.service-includes {
    list-style: none;
    margin-bottom: 24px;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-text-light);
}

.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    background-color: var(--color-success);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M8 12 L6 10 L4 12 L8 16 L16 6 L14 4 Z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-period {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .service-detailed {
        flex-direction: column;
        padding: 24px;
    }
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

.comparison-section .section-tag,
.comparison-section h2 {
    text-align: center;
}

.comparison-section .section-tag {
    display: block;
}

.comparison-section h2 {
    margin-bottom: 48px;
}

.comparison-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.comparison-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    max-width: 360px;
    background-color: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    text-align: center;
    position: relative;
}

.comparison-card.featured {
    border-color: var(--color-primary);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.comparison-card h3 {
    margin-bottom: 16px;
}

.comparison-price {
    margin-bottom: 16px;
}

.comparison-price .price-amount {
    font-size: 2.5rem;
}

.comparison-desc {
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.comparison-features {
    list-style: none;
    text-align: left;
}

.comparison-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.comparison-features li:last-child {
    border-bottom: none;
}

.comparison-features li.not-included {
    color: var(--color-text-light);
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
}

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

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

.contact-card {
    padding: 32px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.contact-icon {
    margin-bottom: 16px;
}

.contact-card h3 {
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.contact-link {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-address {
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.schedule-item:last-child {
    border-bottom: none;
}

.contact-about {
    flex: 1;
}

.contact-about h2 {
    margin-bottom: 24px;
}

.contact-about p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.company-data {
    margin-top: 32px;
    padding: 24px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.company-data h3 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.company-data ul {
    list-style: none;
}

.company-data li {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.company-data li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }
}

/* Directions Section */
.directions-section {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

.directions-section .section-tag {
    display: block;
    text-align: center;
}

.directions-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.directions-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.directions-text {
    flex: 1;
}

.directions-text > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.directions-options {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.direction-option {
    padding: 20px;
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
}

.direction-option h4 {
    margin-bottom: 8px;
}

.direction-option p {
    color: var(--color-text-light);
    margin: 0;
}

.directions-visual {
    flex: 1;
}

.map-illustration {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .directions-content {
        flex-direction: column;
    }
}

/* Thank You Section */
.thank-you-section {
    padding: 100px 0;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    margin-bottom: 32px;
}

.thank-you-content h1 {
    margin-bottom: 24px;
}

.thank-you-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.thank-you-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.next-steps-section {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

.next-steps-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.next-steps-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.next-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.next-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.next-step h3 {
    margin-bottom: 12px;
}

.next-step p {
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .thank-you-actions {
        flex-direction: column;
    }

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

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

.legal-article {
    max-width: 800px;
    margin: 0 auto;
}

.legal-article h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.legal-article h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.legal-article p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.legal-article ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-article li {
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.legal-article em {
    color: var(--color-text-light);
}

/* Cookie Table */
.cookie-table {
    margin: 24px 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cookie-row {
    display: flex;
    border-bottom: 1px solid var(--color-border);
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-row.header {
    background-color: var(--color-bg-alt);
    font-weight: 600;
}

.cookie-row span {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.9rem;
}

.cookie-row span:not(:last-child) {
    border-right: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .cookie-row {
        flex-direction: column;
    }

    .cookie-row span {
        border-right: none !important;
        border-bottom: 1px solid var(--color-border);
    }

    .cookie-row span:last-child {
        border-bottom: none;
    }

    .cookie-row.header {
        display: none;
    }
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #94a3b8;
    padding: 60px 0 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

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

.footer-links a {
    color: #94a3b8;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 24px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 24px;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.cookie-content h3 {
    width: 100%;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cookie-content > p {
    flex: 1;
    min-width: 280px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal[hidden] {
    display: none;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
}

.cookie-modal-content {
    position: relative;
    background-color: var(--color-bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 24px;
}

.cookie-options {
    margin-bottom: 24px;
}

.cookie-option {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 8px;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
}

.cookie-option p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
    padding-left: 32px;
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Accessibility */
:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
