/* Base Styles */
:root {
    --color-primary: #1a5f7a;
    --color-secondary: #2d8bba;
    --color-accent: #f8b500;
    --color-dark: #1a1a2e;
    --color-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-gray-light: #e8f4f8;
    --color-white: #ffffff;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

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

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

a:hover {
    color: var(--color-secondary);
}

ul {
    list-style: none;
}

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

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

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

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
}

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

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

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

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

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

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

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

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

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.nav {
    padding: 16px 0;
}

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

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

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

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    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);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    padding: 20px;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 8px;
}

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

.nav-link {
    display: block;
    padding: 12px 16px;
    color: var(--color-dark);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

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

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

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: none;
        padding: 0;
        box-shadow: none;
        gap: 4px;
    }

    .nav-link {
        padding: 8px 16px;
    }
}

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

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

.hero-content {
    max-width: 600px;
}

.hero h1 {
    margin-bottom: 20px;
    color: var(--color-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--color-dark);
}

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

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

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

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }
}

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-white) 100%);
    text-align: center;
}

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

.page-intro {
    font-size: 1.2rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-small {
    padding: 40px 0;
}

/* Section Styles */
section {
    padding: 60px 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

section h2 {
    text-align: center;
    margin-bottom: 16px;
}

/* Philosophy Section */
.philosophy-section {
    background-color: var(--color-white);
}

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

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

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

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

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

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

.value-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

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

    .value-card {
        flex: 1;
    }
}

/* Featured Tours */
.featured-tours {
    background-color: var(--color-gray-light);
}

.tours-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.tour-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

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

.tour-card p {
    color: var(--color-gray);
    margin-bottom: 16px;
}

.tour-duration {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-secondary);
    background-color: var(--color-gray-light);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.tour-card-large {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
}

.tour-card-large h3,
.tour-card-large p {
    color: var(--color-white);
}

.tour-card-large .tour-duration {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

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

@media (min-width: 768px) {
    .tours-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-card-large {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .tours-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tour-card {
        flex: 1;
        min-width: calc(50% - 24px);
    }

    .tour-card-large {
        flex: 2;
        min-width: calc(50% - 12px);
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 50px 0;
}

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

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
    .stats-grid {
        justify-content: space-around;
    }

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

/* Process Section */
.process-section {
    background-color: var(--color-white);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 40px auto 0;
}

.process-step {
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: var(--color-dark);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
}

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

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

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: none;
    }

    .process-step {
        flex: 1;
        min-width: 200px;
        padding-left: 0;
        padding-top: 80px;
        text-align: center;
    }

    .step-number {
        left: 50%;
        transform: translateX(-50%);
    }
}

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-quote {
    margin-bottom: 16px;
}

.testimonial-card > p {
    color: var(--color-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--color-dark);
}

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

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

    .testimonial-card {
        flex: 1;
    }
}

/* Regions Section */
.regions-section {
    background-color: var(--color-white);
}

.regions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.region-item {
    text-align: center;
    width: calc(50% - 15px);
    max-width: 180px;
}

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

.region-item h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.region-item p {
    font-size: 0.875rem;
    color: var(--color-gray);
}

@media (min-width: 768px) {
    .region-item {
        width: auto;
    }
}

/* Insights Section */
.insights-section {
    background-color: var(--color-gray-light);
}

.insights-content h2 {
    margin-bottom: 30px;
}

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

.insight-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
}

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

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

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

    .insight-card {
        flex: 1;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--color-white);
}

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

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

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

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

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

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

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

.faq-answer {
    display: none;
    padding-bottom: 20px;
}

.faq-answer.active {
    display: block;
}

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

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

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-white);
    margin-bottom: 16px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color var(--transition);
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

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

    .footer-brand {
        flex: 2;
    }

    .footer-links,
    .footer-contact {
        flex: 1;
    }
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-content > p {
    color: var(--color-gray);
    margin-bottom: 20px;
}

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

.cookie-actions .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* 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: 20px;
}

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

.cookie-modal-content {
    background-color: var(--color-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: 20px 24px;
    border-bottom: 1px solid var(--color-gray-light);
}

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

.cookie-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--color-gray);
    transition: color var(--transition);
}

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

.cookie-modal-body {
    padding: 24px;
}

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

.cookie-option:last-child {
    margin-bottom: 0;
}

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

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    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-color: var(--color-gray);
    border-radius: 26px;
    transition: var(--transition);
}

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

.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-option-info h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.cookie-option-info p {
    color: var(--color-gray);
    font-size: 0.875rem;
}

.cookie-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--color-gray-light);
}

/* Services Page */
.services-intro {
    padding-bottom: 40px;
}

.services-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.category-card {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    min-width: 150px;
    flex: 1;
    max-width: 200px;
}

.category-icon {
    margin-bottom: 12px;
}

.category-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* Service Cards Detailed */
.services-list {
    background-color: var(--color-gray-light);
}

.services-list h2 {
    margin-bottom: 40px;
}

.service-card-detailed {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--color-accent);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    border-bottom: 1px solid var(--color-gray-light);
}

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

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

.service-duration {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.service-price {
    text-align: left;
}

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

.price-note {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.service-body {
    padding: 24px;
}

.service-body > p {
    color: var(--color-gray);
    margin-bottom: 20px;
}

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-includes li {
    position: relative;
    padding-left: 24px;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.service-card-detailed.highlight {
    border: 2px solid var(--color-accent);
}

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

    .service-title {
        flex: 1;
    }

    .service-price {
        text-align: right;
    }
}

/* Service Benefits */
.service-benefits {
    background-color: var(--color-white);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.benefit-item h3 {
    margin-bottom: 8px;
}

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

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

    .benefit-item {
        flex: 1;
        min-width: calc(50% - 15px);
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        align-self: center;
    }
}

/* Comparison Table */
.comparison-section {
    background-color: var(--color-gray-light);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

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

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
}

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

.comparison-table tr:nth-child(even) {
    background-color: var(--color-gray-light);
}

.comparison-table td {
    color: var(--color-dark);
}

/* Contact Page */
.contact-main {
    background-color: var(--color-white);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.contact-card {
    background-color: var(--color-gray-light);
    padding: 24px;
    border-radius: var(--radius-lg);
}

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

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

.contact-card p {
    color: var(--color-dark);
    margin-bottom: 8px;
}

.contact-note {
    font-size: 0.85rem;
    color: var(--color-gray) !important;
    font-style: italic;
}

.contact-details {
    flex: 1;
}

.company-info h2 {
    text-align: left;
    margin-bottom: 20px;
}

.company-info > p {
    color: var(--color-gray);
    margin-bottom: 16px;
}

.company-details {
    margin-top: 30px;
    padding: 24px;
    background-color: var(--color-gray-light);
    border-radius: var(--radius-lg);
}

.company-details h3 {
    margin-bottom: 16px;
}

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

.company-list li {
    color: var(--color-dark);
}

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

    .contact-info-block {
        width: 320px;
        flex-shrink: 0;
    }
}

/* Directions Section */
.directions-section {
    background-color: var(--color-gray-light);
}

.directions-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.direction-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.direction-block h3 {
    margin-bottom: 8px;
}

.direction-block p {
    color: var(--color-gray);
}

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

    .direction-block {
        flex: 1;
        flex-direction: column;
        text-align: center;
    }

    .direction-icon {
        align-self: center;
    }
}

/* Trust Section */
.trust-section {
    background-color: var(--color-white);
    padding: 40px 0;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.trust-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark);
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
    background-color: var(--color-gray-light);
}

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

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

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

.thank-you-message {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 40px;
}

.thank-you-info {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    text-align: left;
}

.thank-you-info h2 {
    text-align: left;
    margin-bottom: 24px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.step-text h3 {
    margin-bottom: 4px;
    font-size: 1rem;
}

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

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

/* Featured Section */
.featured-section {
    background-color: var(--color-white);
}

.featured-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.featured-card {
    background-color: var(--color-gray-light);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
}

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

.featured-card h3 {
    margin-bottom: 8px;
}

.featured-card p {
    color: var(--color-gray);
    margin-bottom: 16px;
}

.link-arrow {
    font-weight: 500;
    color: var(--color-primary);
}

.link-arrow:hover {
    color: var(--color-secondary);
}

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

    .featured-card {
        flex: 1;
    }
}

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

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

.legal-updated {
    color: var(--color-gray);
    font-style: italic;
    margin-bottom: 30px;
}

.legal-text h2 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--color-gray-light);
}

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

.legal-text h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

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

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

.legal-text li {
    color: var(--color-gray);
    margin-bottom: 8px;
    list-style: disc;
}

.legal-text a {
    color: var(--color-primary);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-light);
}

.cookie-table th {
    background-color: var(--color-gray-light);
    font-weight: 600;
    color: var(--color-dark);
}

.cookie-table td {
    color: var(--color-gray);
}

/* About Page - Story Section */
.story-section {
    background-color: var(--color-white);
}

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

.story-text {
    max-width: 600px;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

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

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

.story-illustration {
    max-width: 300px;
}

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

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

/* Timeline / Milestones */
.milestones-section {
    background-color: var(--color-gray-light);
}

.timeline {
    max-width: 700px;
    margin: 40px auto 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    position: relative;
}

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

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

.timeline-year {
    width: 70px;
    height: 35px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

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

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

/* Team Section */
.team-section {
    background-color: var(--color-white);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background-color: var(--color-gray-light);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    width: calc(50% - 15px);
    max-width: 280px;
}

.team-avatar {
    margin-bottom: 16px;
}

.team-card h3 {
    margin-bottom: 4px;
}

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

.team-card p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .team-card {
        width: auto;
        flex: 1;
        min-width: 220px;
    }
}

/* Values Section */
.values-section {
    background-color: var(--color-gray-light);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.value-block {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-icon-large {
    margin-bottom: 16px;
}

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

.value-block p {
    color: var(--color-gray);
}

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

    .value-block {
        flex: 1;
        min-width: calc(50% - 15px);
    }
}

/* Approach Section */
.approach-section {
    background-color: var(--color-white);
}

.approach-content h2 {
    margin-bottom: 40px;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-block {
    padding: 24px;
    border-left: 4px solid var(--color-accent);
    background-color: var(--color-gray-light);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.approach-block h3 {
    margin-bottom: 12px;
}

.approach-block p {
    color: var(--color-gray);
}

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

    .approach-block {
        flex: 1;
    }
}

/* Certifications */
.certifications-section {
    background-color: var(--color-gray-light);
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.certification-item {
    text-align: center;
    max-width: 200px;
}

.certification-item h4 {
    margin-top: 16px;
    margin-bottom: 4px;
}

.certification-item p {
    color: var(--color-gray);
    font-size: 0.875rem;
}

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

/* Focus Styles */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

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