/* Base Reset & Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #64748b;
    --dark: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --border: #e2e8f0;
    --success: #10b981;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    line-height: 1.3;
    font-weight: 600;
}

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.75rem; }
    h3 { font-size: 1.25rem; }
}

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

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

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

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

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

.btn-outline:hover {
    background: var(--background-alt);
    color: var(--dark);
}

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

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

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

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

.nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
}

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

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
        display: none;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a.active::after {
        display: none;
    }
}

/* Section Tags */
.section-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(135deg, var(--background-alt) 0%, var(--white) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

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

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-illustration {
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Page Hero */
.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-compact {
    padding: 3rem 0;
}

/* Trust Indicators */
.trust-indicators {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-weight: 500;
}

/* Company Overview */
.company-overview {
    padding: 5rem 0;
}

.company-overview .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.overview-content {
    flex: 1;
}

.overview-content h2 {
    margin-bottom: 1.5rem;
}

.overview-list {
    margin: 1.5rem 0 2rem;
}

.overview-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.overview-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.overview-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.overview-illustration {
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .company-overview .container {
        flex-direction: column;
    }

    .overview-visual {
        order: -1;
        max-width: 300px;
    }
}

/* Services Highlight */
.services-highlight {
    padding: 5rem 0;
    background: var(--background-alt);
}

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

.service-card {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-icon {
    margin-bottom: 1.25rem;
}

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

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

.services-cta {
    text-align: center;
    margin-top: 2.5rem;
}

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

/* Process Section */
.process-section {
    padding: 5rem 0;
}

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

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

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

.step-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.process-steps.horizontal {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 1.5rem;
}

.process-steps.horizontal .process-step {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

/* Statistics Section */
.statistics-section {
    padding: 5rem 0;
    background: var(--primary);
    color: var(--white);
}

.stats-content {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-content h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.stats-content p {
    opacity: 0.9;
}

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

.stat-block {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
}

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

/* Benefits Types */
.benefits-types {
    padding: 5rem 0;
}

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

.benefit-category {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--background-alt);
    border-radius: var(--radius-lg);
}

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

.benefit-category ul {
    list-style: disc;
    padding-left: 1.25rem;
}

.benefit-category li {
    margin-bottom: 0.5rem;
    color: var(--text);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

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

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

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

.faq-question:hover {
    color: var(--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;
}

.faq-answer p {
    padding-bottom: 1.25rem;
    color: var(--text-light);
}

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

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

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-brand p {
    color: #94a3b8;
    font-size: 0.9375rem;
}

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

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    flex: 1;
    min-width: 180px;
}

.footer-contact p {
    color: #94a3b8;
    font-size: 0.9375rem;
}

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

.footer-bottom p {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-grid {
        gap: 2rem;
    }

    .footer-brand {
        flex: 1 1 100%;
    }
}

/* Story Section */
.story-section {
    padding: 5rem 0;
}

.story-section .container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-content {
    flex: 1.5;
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.story-illustration {
    max-width: 100%;
    height: auto;
}

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

    .story-visual {
        order: -1;
        max-width: 320px;
    }
}

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

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

.philosophy-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.philosophy-icon {
    margin-bottom: 1.25rem;
}

.philosophy-card h3 {
    margin-bottom: 0.75rem;
}

.philosophy-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
}

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

.value-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
}

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

.value-item h3 {
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

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

.team-card {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 240px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.team-avatar {
    margin-bottom: 1.25rem;
}

.team-card h3 {
    margin-bottom: 0.25rem;
}

.team-role {
    display: block;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Milestones Section */
.milestones-section {
    padding: 5rem 0;
}

.milestones-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.milestones-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.milestone {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.milestone-year {
    flex-shrink: 0;
    width: 60px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    text-align: right;
    padding-top: 0.25rem;
}

.milestone-content {
    flex: 1;
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: var(--radius);
    position: relative;
}

.milestone-content::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 1rem;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
}

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

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

@media (max-width: 576px) {
    .milestones-timeline::before {
        left: 20px;
    }

    .milestone-year {
        width: 40px;
        font-size: 1rem;
    }

    .milestone {
        gap: 1.5rem;
    }
}

/* Achievements Section */
.achievements-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

.achievements-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.achievement-card {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.achievement-card svg {
    margin-bottom: 1rem;
}

.achievement-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.achievement-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Services Page */
.services-intro {
    padding: 3rem 0;
    background: var(--background-alt);
}

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

.intro-content p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.services-main {
    padding: 4rem 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.service-detail-card.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.service-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--background-alt);
    border-bottom: 1px solid var(--border);
}

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

.service-title-block h2 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

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

.service-body {
    padding: 2rem;
}

.service-body h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-body ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-body li {
    margin-bottom: 0.5rem;
    color: var(--text);
}

@media (max-width: 576px) {
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Service Comparison */
.service-comparison {
    padding: 4rem 0;
    background: var(--background-alt);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--background-alt);
}

/* Service Benefits */
.service-benefits {
    padding: 4rem 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-text h3 {
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Contact Page */
.contact-main {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info-block {
    flex: 1.5;
}

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

.contact-detail {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: var(--radius-lg);
}

.contact-icon {
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.contact-text p {
    margin-bottom: 0;
    color: var(--text);
}

.contact-note {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.contact-side {
    flex: 1;
}

.company-info-card {
    background: var(--background-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.company-info-card h3 {
    margin-bottom: 1rem;
}

.company-stats-mini {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.stat-mini {
    flex: 1;
    text-align: center;
}

.stat-value-mini {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label-mini {
    font-size: 0.75rem;
    color: var(--text-light);
}

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

/* Directions Section */
.directions-section {
    padding: 4rem 0;
    background: var(--background-alt);
}

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

.direction-card {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

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

.direction-card h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.direction-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

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

/* Info Section */
.info-section {
    padding: 4rem 0;
}

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

.info-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.info-card svg {
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

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

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
    min-height: 60vh;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

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

.thank-you-message {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.next-steps {
    margin-top: 3rem;
    text-align: left;
}

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

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

.step-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: var(--radius-lg);
}

.step-icon {
    flex-shrink: 0;
}

.step-text h3 {
    margin-bottom: 0.25rem;
}

.step-text p {
    color: var(--text-light);
    margin-bottom: 0;
}

.useful-links {
    margin-top: 3rem;
}

.useful-links h2 {
    margin-bottom: 0.5rem;
}

.links-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    color: var(--text);
    transition: var(--transition);
}

.link-card:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.return-home {
    margin-top: 3rem;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
}

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

.legal-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

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

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

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--border);
}

.cookie-table th {
    background: var(--background-alt);
    font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.25rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    min-width: 280px;
}

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

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

    .cookie-buttons {
        justify-content: center;
    }
}

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

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

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

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cookie-modal-header h3 {
    margin-bottom: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0.25rem;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: var(--dark);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

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

.cookie-option-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.cookie-option-info p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cbd5e1;
    border-radius: 28px;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-toggle input:checked + .toggle-slider {
    background: var(--primary);
}

.cookie-toggle input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.cookie-toggle.disabled {
    opacity: 0.6;
}

.cookie-toggle.disabled .toggle-slider {
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

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

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .cta-section {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    .container {
        max-width: 100%;
    }
}
