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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --background: #ffffff;
    --background-light: #f8fafc;
    --background-gray: #f1f5f9;
    --border-color: #e2e8f0;
    --success: #10b981;
    --error: #ef4444;
    --shadow-sm: 0 1px 2px 0 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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

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

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(--primary-dark);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
}

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

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

.nav-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        border: none;
        box-shadow: none;
    }

    .nav-menu li {
        border: none;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: transparent;
    }
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--background-light) 0%, #e0f2fe 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-visual img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero {
        padding: 5rem 0;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Sections */
section {
    padding: 3rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.section-intro h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.lead {
    font-size: 1.125rem;
    color: var(--text-medium);
}

h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

/* Trust Indicators */
.trust-indicators {
    background-color: var(--background);
    padding: 2rem 0;
}

.indicators-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.indicator img {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
}

.indicator h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.indicator p {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* Service Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Content Sections */
.company-story,
.philosophy,
.company-overview,
.values-section,
.approach-section {
    background-color: var(--background-light);
}

.story-content,
.overview-content,
.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-block,
.overview-text {
    flex: 1;
}

.story-block p,
.overview-text p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.story-visual,
.overview-visual {
    flex: 1;
}

@media (min-width: 768px) {
    .story-content,
    .overview-content {
        flex-direction: row;
        align-items: center;
    }
}

/* Philosophy Points */
.philosophy-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point {
    padding: 1.5rem;
    background-color: var(--background);
    border-left: 4px solid var(--primary-color);
    border-radius: 0.5rem;
}

.point h4 {
    color: var(--primary-color);
}

.point p {
    color: var(--text-medium);
}

/* Process Steps */
.process-steps {
    background-color: var(--background);
}

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

.step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 0.75rem;
}

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

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-medium);
}

/* Testimonials */
.testimonials {
    background-color: var(--background-light);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: var(--background);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

/* Industries List */
.industries-list,
.reasons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.industry-item,
.reason-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: var(--background);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
}

.industry-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
}

.reason-number {
    flex-shrink: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.3;
}

.reason-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.reason-content p {
    color: var(--text-medium);
}

/* Knowledge Grid */
.knowledge-grid,
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.knowledge-card,
.benefit-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: var(--background);
    border-left: 4px solid var(--primary-color);
    border-radius: 0.5rem;
}

.knowledge-card h3,
.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.knowledge-card p,
.benefit-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: var(--background);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

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

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

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

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--background-light) 0%, #e0f2fe 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--background);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
}

.value-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-light);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content {
    flex: 1;
    padding-bottom: 2rem;
    border-left: 2px solid var(--border-color);
    padding-left: 1.5rem;
}

.timeline-item:last-child .timeline-content {
    border-left: none;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-medium);
}

/* Stats Grid */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-medium);
    font-size: 0.875rem;
}

/* Approach Blocks */
.approach-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 2rem;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.approach-block {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: var(--background);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
}

.approach-block h3 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.approach-block p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Services Page */
.services-intro {
    background-color: var(--background-light);
}

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

.intro-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.service-card-detailed {
    background-color: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.service-header h3 {
    flex: 1;
    margin: 0;
}

.service-description {
    margin-bottom: 1.5rem;
}

.service-description p {
    color: var(--text-medium);
    line-height: 1.7;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.service-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.price-label {
    font-weight: 600;
    color: var(--text-medium);
}

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

/* Comparison Table */
.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    flex-direction: column;
}

.comparison-row.header-row {
    background-color: var(--primary-color);
    color: white;
}

.comparison-row.header-row .comparison-cell {
    font-weight: 700;
}

.comparison-cell {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

@media (min-width: 768px) {
    .comparison-row {
        flex-direction: row;
    }

    .comparison-cell {
        flex: 1;
        border-right: 1px solid var(--border-color);
    }

    .comparison-cell:last-child {
        border-right: none;
    }

    .comparison-cell:first-child {
        flex: 0 0 200px;
        font-weight: 600;
    }
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-main {
    flex: 1.5;
}

.contact-visual {
    flex: 1;
}

.info-block {
    margin-bottom: 1.5rem;
}

.info-block h3 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--text-medium);
    line-height: 1.7;
}

.info-block a {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Regional Offices */
.offices-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.office-card {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
}

.office-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.office-address,
.office-email,
.office-hours {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.office-email a {
    color: var(--primary-color);
}

/* Company Details */
.company-details {
    max-width: 900px;
}

.company-details p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.company-info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 0.5rem;
}

.info-item h3 {
    font-size: 1.125rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.info-item p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Directions */
.directions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.direction-method {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 0.5rem;
}

.direction-method h3 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.direction-method p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Thank You Page */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.thank-you-icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    color: var(--success);
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 0.75rem;
}

.step-icon img {
    width: 48px;
    height: 48px;
}

.step-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.additional-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.additional-info > p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.info-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: var(--background-light);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-link:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.info-link img {
    width: 32px;
    height: 32px;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.updated {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--text-dark);
}

.legal-section h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.cookie-table {
    background-color: var(--background-light);
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.cookie-table h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.cookie-table ul {
    list-style: none;
    padding-left: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-actions {
        flex-wrap: nowrap;
    }
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--background);
    border-radius: 0.75rem;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-xl);
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option p {
    margin: 0.5rem 0 0 2rem;
    color: var(--text-medium);
    font-size: 0.875rem;
}

.cookie-modal-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

/* Responsive Utilities */
@media (max-width: 767px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}
