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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

a:hover {
    color: #1d4ed8;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    gap: 10px;
}

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

.nav-menu li a {
    display: block;
    padding: 12px 16px;
    color: #333;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: #f3f4f6;
    color: #2563eb;
}

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

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        height: auto;
        box-shadow: none;
        padding: 0;
        gap: 8px;
    }

    .nav-menu li a {
        padding: 8px 16px;
    }
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    color: #1e293b;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
}

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

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

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

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

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 0 0 45%;
    }

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

/* Page Hero */
.page-hero {
    padding: 60px 0 40px;
    background-color: #f8fafc;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero .lead {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

/* Sections */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 1.875rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 1.875rem;
    color: #1e293b;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}

h3 {
    font-size: 1.375rem;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 600;
}

p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #475569;
}

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

.btn-primary {
    background-color: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

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

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

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.875rem;
}

/* Content Blocks */
.content-blocks {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.content-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.block-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

    .content-block {
        flex: 1;
    }
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

    .service-card {
        flex: 0 0 calc(50% - 12px);
    }
}

/* Service Details */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detailed {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

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

.service-title h3 {
    margin-bottom: 8px;
}

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

.service-description {
    padding: 32px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0 8px 32px;
    position: relative;
    color: #475569;
}

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

/* Comparison Table */
.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comparison-column {
    background-color: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.comparison-column.featured {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2563eb;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.package-features li {
    padding-left: 28px;
    position: relative;
    color: #475569;
}

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

.package-ideal {
    text-align: center;
    font-style: italic;
    color: #64748b;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

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

    .comparison-column {
        flex: 1;
    }
}

/* Benefits Section */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 24px;
}

.benefit-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.benefit-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.benefits-services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

    .benefit-service {
        flex: 0 0 calc(33.333% - 16px);
    }
}

/* Stats Section */
.stats-section {
    background-color: #1e293b;
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 8px;
}

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

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

    .stat-item {
        flex: 1;
    }
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-content {
    font-style: italic;
    color: #475569;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.875rem;
}

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

    .testimonial-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 24px;
}

.step-marker {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

/* Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    padding-left: 40px;
}

.process-timeline:before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e2e8f0;
}

.timeline-item {
    display: flex;
    gap: 24px;
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    width: 32px;
    height: 32px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.timeline-content {
    flex: 1;
}

.timeline-duration {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background-color: #f1f5f9;
    color: #64748b;
    border-radius: 6px;
    font-size: 0.875rem;
}

/* Knowledge Cards */
.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.knowledge-card {
    background-color: #fff;
    padding: 28px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.knowledge-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: #1e293b;
}

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

    .knowledge-card {
        flex: 0 0 calc(50% - 12px);
    }
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 600;
    color: #1e293b;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 16px;
}

.faq-icon:before,
.faq-icon:after {
    content: "";
    position: absolute;
    background-color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-icon:before {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.faq-icon:after {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    color: #475569;
}

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

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 32px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

    .value-card {
        flex: 0 0 calc(50% - 16px);
    }
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 8px;
}

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

    .team-member {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (min-width: 1024px) {
    .team-member {
        flex: 0 0 calc(25% - 24px);
    }
}

/* Approach Content */
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-item {
    padding: 24px;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

/* Achievements List */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    padding-left: 80px;
}

.achievement-item {
    display: flex;
    gap: 32px;
    position: relative;
}

.achievement-year {
    position: absolute;
    left: -80px;
    width: 60px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: #2563eb;
}

.achievement-content h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

/* Industries Grid */
.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.industry-card {
    padding: 28px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

    .industry-card {
        flex: 0 0 calc(50% - 12px);
    }
}

/* Trust Grid */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background-color: #f8fafc;
    border-radius: 8px;
}

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

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

    .trust-item {
        flex: 0 0 calc(50% - 12px);
    }
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
}

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

.contact-types {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.contact-type {
    padding: 24px;
    background-color: #f8fafc;
    border-radius: 8px;
}

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

    .contact-info {
        flex: 0 0 35%;
    }

    .contact-description {
        flex: 1;
    }
}

/* Location Section */
.location-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.location-description h4 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.location-list {
    list-style: none;
    margin-top: 12px;
}

.location-list li {
    padding: 8px 0;
    color: #475569;
}

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

    .location-description {
        flex: 1;
    }

    .location-visual {
        flex: 0 0 45%;
    }
}

/* Company Info */
.company-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.company-detail-item {
    padding: 28px;
    background-color: #f8fafc;
    border-radius: 8px;
}

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

    .company-detail-item {
        flex: 1;
    }
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.thank-you-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-steps {
    width: 100%;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.additional-info {
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

.legal-intro {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-date {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 40px;
}

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

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 16px;
    color: #1e293b;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #334155;
}

.legal-section ul,
.legal-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: disc;
}

.legal-section ol {
    list-style: decimal;
}

.legal-section li {
    padding: 4px 0;
    color: #475569;
}

.cookies-table {
    margin-top: 32px;
}

.cookies-table h3 {
    margin-bottom: 16px;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    font-size: 0.875rem;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookies-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.cookies-table td {
    color: #475569;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
}

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

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

.cta-content p {
    color: #e0f2fe;
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #60a5fa;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: #e0f2fe;
    margin: 0;
    text-align: center;
}

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

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-actions {
        flex-shrink: 0;
    }
}

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

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

.modal-content {
    background-color: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    margin: 0;
    color: #1e293b;
}

.modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    font-size: 2rem;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1e293b;
}

.modal-body {
    padding: 24px;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-option label {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option strong {
    display: block;
    color: #1e293b;
    margin-bottom: 4px;
}

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

.modal-footer {
    padding: 24px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
}

/* Utility Classes */
.intro-section {
    background-color: #f8fafc;
}

.services-highlight {
    background-color: #fff;
}

.philosophy-section {
    background-color: #f8fafc;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-visual {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
}

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

.story-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-text {
    flex: 1;
}

.story-visual {
    flex: 0 0 450px;
    display: flex;
    justify-content: center;
}

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

/* Responsive Typography */
@media (min-width: 768px) {
    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

/* Accessibility */
:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

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