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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c7bb6;
    --accent-color: #f39c12;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #ddd;
    --white: #ffffff;
    --success-color: #27ae60;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
}

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

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header and Navigation */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: var(--spacing-sm) 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

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

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

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

.nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    list-style: none;
    margin-top: var(--spacing-sm);
}

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

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

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: var(--spacing-xs);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

/* Page Hero */
.page-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #e67e22;
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.btn-text {
    background: transparent;
    color: var(--text-color);
    text-decoration: underline;
}

/* Sections */
section {
    padding: var(--spacing-xxl) 0;
}

.alt-bg {
    background: var(--light-color);
}

.section-header {
    margin-bottom: var(--spacing-xl);
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 1.875rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

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

.section-illustration {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Intro Section */
.intro-section {
    padding: var(--spacing-xl) 0;
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.intro-text h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.intro-text p {
    margin-bottom: var(--spacing-sm);
}

/* Routes Highlight */
.routes-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.route-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.route-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
}

.route-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.route-duration {
    display: inline-block;
    margin-top: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--light-color);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-color);
}

/* Benefits Section */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.benefit-icon {
    width: 50px;
    height: 50px;
}

.benefit-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

/* Philosophy Section */
.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.philosophy-text h2 {
    font-size: 1.875rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.philosophy-text p {
    margin-bottom: var(--spacing-md);
}

.philosophy-quote blockquote {
    background: var(--light-color);
    padding: var(--spacing-lg);
    border-left: 4px solid var(--accent-color);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.8;
}

.philosophy-quote cite {
    display: block;
    margin-top: var(--spacing-md);
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Stats Section */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: 8px;
}

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

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

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

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

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.process-step {
    display: flex;
    gap: var(--spacing-md);
}

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

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

/* Insights Section */
.insights-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.insight-main h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.insight-main p {
    margin-bottom: var(--spacing-md);
}

.insight-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.insight-tip {
    background: var(--light-color);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.insight-tip h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    transition: all 0.3s ease;
}

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

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

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

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

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

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
}

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

.cta-content h2 {
    font-size: 1.875rem;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

/* Services Page */
.services-intro {
    padding: var(--spacing-lg) 0;
}

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

.service-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-xl);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
}

.service-title h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.service-duration {
    font-size: 0.875rem;
    color: #666;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.service-description p {
    margin-bottom: var(--spacing-md);
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: var(--light-color);
    border-radius: 8px;
}

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

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Benefits Comparison */
.benefits-comparison {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.benefit-column h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.benefit-checklist {
    list-style: none;
}

.benefit-checklist li {
    padding: var(--spacing-sm);
    padding-left: 2.5rem;
    position: relative;
}

.benefit-checklist li:before {
    content: "✓";
    position: absolute;
    left: var(--spacing-sm);
    color: var(--success-color);
    font-weight: 700;
}

.benefit-checklist.excluded li:before {
    content: "—";
    color: #999;
}

/* Booking Process */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.flow-step {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flow-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.flow-step h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.flow-arrow {
    display: none;
}

/* Contact Page */
.contact-intro {
    padding: var(--spacing-lg) 0;
}

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

.contact-intro-content p {
    margin-bottom: var(--spacing-md);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.info-block {
    margin-bottom: var(--spacing-xl);
}

.info-block h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.info-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.info-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.info-note {
    font-size: 0.875rem;
    color: #666;
    margin-top: var(--spacing-xs);
}

.map-placeholder {
    background: var(--light-color);
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
}

.map-caption {
    margin-top: var(--spacing-md);
}

/* Company Details */
.company-info-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.company-info-item {
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 8px;
}

.company-info-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
}

/* Departments */
.departments-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.department-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.department-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
}

.department-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.department-contact {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: var(--spacing-sm);
}

/* About Page */
.story-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.story-text h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.story-text p {
    margin-bottom: var(--spacing-md);
}

/* Values */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.value-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--spacing-md);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

/* Team */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.team-member {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.member-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.timeline-item {
    display: flex;
    gap: var(--spacing-md);
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

/* Philosophy Detail */
.philosophy-split {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.philosophy-block h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.philosophy-block p {
    margin-bottom: var(--spacing-md);
}

/* Commitments */
.commitments-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.commitment-item {
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.commitment-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

/* Trust */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.trust-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
}

.trust-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
}

.trust-item p {
    font-weight: 500;
    color: var(--text-color);
}

/* Thank You Page */
.thankyou-section {
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

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

.thankyou-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
}

.thankyou-content h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.thankyou-text {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
}

.info-boxes {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-box {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
}

.info-box h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    padding: var(--spacing-xs) 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Legal Pages */
.legal-hero {
    background: var(--primary-color);
}

.legal-content {
    padding: var(--spacing-xxl) 0;
}

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

.legal-text h2 {
    font-size: 1.75rem;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.legal-text h3 {
    font-size: 1.25rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.legal-text h4 {
    font-size: 1.125rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.legal-text p {
    margin-bottom: var(--spacing-md);
}

.legal-text ul {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.legal-text li {
    margin-bottom: var(--spacing-xs);
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-column h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-md) 0;
    z-index: 999;
    display: none;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.cookie-content p {
    margin: 0;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

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

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

.modal-header h2 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--primary-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: var(--spacing-md);
}

.cookie-option {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

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

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 500;
    cursor: pointer;
}

.cookie-option p {
    margin-top: var(--spacing-xs);
    margin-left: 2rem;
    font-size: 0.875rem;
    color: #666;
}

.modal-footer {
    padding: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        width: auto;
        margin-top: 0;
    }

    .nav-menu li {
        padding: 0 var(--spacing-md);
        border-bottom: none;
    }

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

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

    .intro-grid {
        flex-direction: row;
        align-items: center;
    }

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

    .routes-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .route-card {
        flex: 0 0 calc(50% - var(--spacing-lg) / 2);
    }

    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 0 0 calc(50% - var(--spacing-lg) / 2);
        flex-direction: row;
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 calc(50% - var(--spacing-lg) / 2);
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - var(--spacing-lg) / 2);
    }

    .insights-wrapper {
        flex-direction: row;
    }

    .insight-main {
        flex: 2;
    }

    .insight-sidebar {
        flex: 1;
    }

    .service-header {
        flex-direction: row;
        align-items: center;
    }

    .service-content {
        flex-direction: row;
    }

    .service-description {
        flex: 2;
    }

    .service-pricing {
        flex: 1;
    }

    .benefits-comparison {
        flex-direction: row;
    }

    .benefit-column {
        flex: 1;
    }

    .process-flow {
        flex-direction: row;
        align-items: center;
    }

    .flow-step {
        flex: 1;
    }

    .flow-arrow {
        display: block;
        font-size: 2rem;
        color: var(--secondary-color);
        flex-shrink: 0;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1.5;
    }

    .contact-map {
        flex: 1;
    }

    .company-info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .company-info-item {
        flex: 0 0 calc(50% - var(--spacing-lg) / 2);
    }

    .departments-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .department-card {
        flex: 0 0 calc(50% - var(--spacing-lg) / 2);
    }

    .story-content {
        flex-direction: row;
        align-items: center;
    }

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

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - var(--spacing-lg) / 2);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 0 0 calc(50% - var(--spacing-lg) / 2);
    }

    .philosophy-split {
        flex-direction: row;
    }

    .philosophy-block {
        flex: 1;
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 0 0 calc(50% - var(--spacing-lg) / 2);
    }

    .thankyou-actions {
        flex-direction: row;
        justify-content: center;
    }

    .info-boxes {
        flex-direction: row;
    }

    .info-box {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-direction: row;
        width: auto;
    }
}

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

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

    .section-header h2 {
        font-size: 2.25rem;
    }

    .routes-grid {
        flex-wrap: nowrap;
    }

    .route-card {
        flex: 1;
    }

    .benefits-list {
        flex-wrap: nowrap;
    }

    .benefit-item {
        flex: 1;
        flex-direction: column;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1;
    }

    .company-info-grid {
        flex-wrap: nowrap;
    }

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

    .departments-grid {
        flex-wrap: nowrap;
    }

    .department-card {
        flex: 1;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .team-member {
        flex: 1;
    }

    .trust-grid {
        flex-wrap: nowrap;
    }

    .trust-item {
        flex: 1;
    }
}
