:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-secondary: #4f46e5;
    --color-accent: #0284c7;
    --color-success: #16a34a;
    --color-warning: #d97706;
    --color-purple: #a855f7;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-text-muted: #94a3b8;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #0f172a;
    --color-border: #e2e8f0;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width: 1200px;
    --header-height: 72px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

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

ul {
    list-style: none;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; }
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; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    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-bg-alt);
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-border);
    color: var(--color-text);
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

.nav {
    height: var(--header-height);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    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(--color-text);
}

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

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

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

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

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

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    position: relative;
    transition: background-color var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: transform var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

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

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

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

.hero-content {
    flex: 1;
}

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

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

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

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

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

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

    .hero-subtitle {
        max-width: 100%;
    }

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

@media (max-width: 576px) {
    .hero {
        padding: 3rem 0;
    }

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

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

    .hero-actions .btn {
        width: 100%;
    }
}

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

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

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

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

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background-color: var(--color-primary);
    color: #fff;
}

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

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

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

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

@media (max-width: 576px) {
    .stats-grid {
        gap: 1.5rem;
    }

    .stat-item {
        min-width: 45%;
    }

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

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 0;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.philosophy-text p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
    font-size: 1.125rem;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
}

.value-icon {
    margin-bottom: 1rem;
}

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

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

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

.section-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 640px;
    margin-bottom: 3rem;
}

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

.service-card {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background-color: var(--color-bg);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

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

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

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}

.link-arrow::after {
    content: '→';
    transition: transform var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* Industries Section */
.industries-section {
    padding: 5rem 0;
}

.industries-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.industry-item {
    flex: 1;
    min-width: 260px;
    padding: 1.5rem;
    border-left: 3px solid var(--color-primary);
    background-color: var(--color-bg-alt);
}

.industry-icon {
    margin-bottom: 1rem;
}

.industry-item h3 {
    margin-bottom: 0.5rem;
}

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

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    flex: 1;
    min-width: 240px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

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

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

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

.author-info strong {
    display: block;
    margin-bottom: 0.25rem;
}

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

/* Case Section */
.case-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.case-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.case-text {
    flex: 1;
}

.case-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.case-text h2 {
    margin-bottom: 1rem;
}

.case-text > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.case-highlights {
    list-style: none;
}

.case-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text);
}

.case-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 600;
}

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

@media (max-width: 992px) {
    .case-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

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

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

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

.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.4s ease, padding 0.4s ease;
}

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

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

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    margin-bottom: 1.5rem;
}

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

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #fff;
}

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

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

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

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

.cta-content .btn-primary:hover {
    background-color: var(--color-bg-alt);
    border-color: var(--color-bg-alt);
}

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

.story-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.story-text {
    flex: 1;
}

.story-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

@media (max-width: 992px) {
    .story-content {
        flex-direction: column;
        gap: 2rem;
    }
}

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

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

.milestone-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    position: relative;
}

.milestone-item::before {
    content: '';
    position: absolute;
    left: 72px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-border);
}

.milestone-item:last-child::before {
    display: none;
}

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

.milestone-content {
    flex: 1;
    padding-left: 2rem;
    position: relative;
}

.milestone-content::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 4px;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

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

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

@media (max-width: 576px) {
    .milestone-item {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .milestone-content {
        padding-left: 0;
    }

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

/* Team Section */
.team-section {
    padding: 5rem 0;
}

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

.team-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
}

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

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

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

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

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

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

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background-color: var(--color-bg);
    border-radius: 12px;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.75rem;
}

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

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

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
}

.benefits-content {
    display: flex;
    gap: 4rem;
}

.benefits-text {
    flex: 1;
}

.benefits-text p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

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

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item h4 {
    margin-bottom: 0.25rem;
}

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

@media (max-width: 992px) {
    .benefits-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Certifications Section */
.certifications-section {
    padding: 5rem 0;
}

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

.certification-item {
    text-align: center;
    padding: 2rem;
    min-width: 200px;
}

.certification-icon {
    margin-bottom: 1rem;
}

.certification-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.certification-item p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Services List Section */
.services-list-section {
    padding: 5rem 0;
}

.service-category {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.service-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

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

.category-description {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 800px;
}

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

.service-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
}

.service-item h4 {
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-price {
    font-weight: 600;
    color: var(--color-primary);
}

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

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

.comparison-table {
    width: 100%;
    min-width: 600px;
}

.comparison-header,
.comparison-row {
    display: flex;
}

.comparison-header {
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.comparison-cell {
    flex: 1;
    padding: 1rem 1.5rem;
    text-align: center;
}

.comparison-feature {
    flex: 1.5;
    text-align: left;
    font-weight: 500;
}

.comparison-header .comparison-feature {
    font-weight: 600;
}

.comparison-row {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.comparison-row:nth-child(even) {
    background-color: var(--color-bg-alt);
}

.comparison-highlight {
    background-color: rgba(37, 99, 235, 0.1);
}

.comparison-header .comparison-highlight {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Benefits Alt Section */
.benefits-alt-section {
    padding: 5rem 0;
}

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

.benefit-alt-item {
    flex: 1;
    min-width: 260px;
    text-align: center;
    padding: 2rem;
}

.benefit-alt-icon {
    margin-bottom: 1.5rem;
}

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

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

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

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

.contact-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 12px;
    text-align: center;
}

.contact-icon {
    margin-bottom: 1.5rem;
}

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

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-note {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

/* Company Info Section */
.company-info-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.company-info-content {
    display: flex;
    gap: 4rem;
}

.company-info-text {
    flex: 1.5;
}

.company-info-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.company-details {
    flex: 1;
    padding: 2rem;
    background-color: var(--color-bg);
    border-radius: 12px;
}

.company-details h3 {
    margin-bottom: 1.5rem;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-item dt {
    color: var(--color-text-light);
}

.detail-item dd {
    font-weight: 500;
}

@media (max-width: 992px) {
    .company-info-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Directions Section */
.directions-section {
    padding: 5rem 0;
}

.directions-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direction-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
}

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

.direction-item h3 {
    margin-bottom: 0.5rem;
}

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

/* Departments Section */
.departments-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

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

.department-card {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background-color: var(--color-bg);
    border-radius: 12px;
}

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

.department-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.department-card a {
    font-weight: 500;
}

/* CTA Alt Section */
.cta-alt-section {
    padding: 5rem 0;
}

.cta-alt-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background-color: var(--color-bg-alt);
    border-radius: 16px;
}

.cta-alt-icon {
    flex-shrink: 0;
}

.cta-alt-text {
    flex: 1;
}

.cta-alt-text h2 {
    margin-bottom: 0.75rem;
}

.cta-alt-text p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

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

/* Thank You Section */
.thank-you-section {
    padding: 6rem 0;
    text-align: center;
}

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

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

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

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

.thank-you-note {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

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

/* What Next Section */
.what-next-section {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.what-next-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.what-next-item {
    display: flex;
    gap: 1.5rem;
    flex: 1;
    min-width: 280px;
}

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

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

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

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

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

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.legal-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

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

.legal-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

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

.legal-text li {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.legal-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 320px;
}

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

.footer-logo:hover {
    color: #fff;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--color-text-muted);
    transition: color var(--transition);
}

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

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

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        gap: 2rem;
    }
}

/* 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.1);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner[aria-hidden="false"] {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

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

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

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

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

    .cookie-content p {
        min-width: 100%;
    }

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

    .cookie-actions .btn {
        flex: 1;
        min-width: 100px;
    }
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.active {
    opacity: 1;
    visibility: visible;
}

.cookie-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.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: 2rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content,
.cookie-modal[aria-hidden="false"] .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text-light);
    transition: color var(--transition);
}

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

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

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

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

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

.cookie-option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

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

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

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

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

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

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

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

.cookie-toggle input:disabled + .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

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

.cookie-modal-actions .btn {
    flex: 1;
    min-width: 150px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

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

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

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