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

:root {
    --primary-color: #2c5f7c;
    --primary-dark: #1a3d4f;
    --secondary-color: #4a9ebb;
    --accent-color: #7fb8d1;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --text-light: #777777;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

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

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-graphic {
    flex: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

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

.btn-light:hover {
    background-color: transparent;
    border-color: var(--bg-white);
    color: var(--bg-white);
}

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

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

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

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

section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.page-header {
    background-color: var(--bg-light);
    padding: 60px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Intro Section */
.intro-section {
    background-color: var(--bg-light);
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-gray);
}

/* Values */
.values-section {
    background-color: var(--bg-white);
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

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

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

/* Featured Routes */
.featured-routes {
    background-color: var(--bg-light);
}

.routes-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.route-feature {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.route-feature.reverse {
    flex-direction: row-reverse;
}

.route-feature-content {
    flex: 1;
}

.route-feature h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.route-highlights {
    list-style: none;
    margin-top: 20px;
}

.route-highlights li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
}

.route-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.route-img {
    flex: 1;
    max-width: 400px;
}

/* Statistics */
.statistics {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

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

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

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

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial footer {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

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

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

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

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

.faq-item {
    background-color: var(--bg-white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-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, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
}

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

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Services */
.services-intro {
    background-color: var(--bg-light);
}

.intro-text h2 {
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.services-list {
    background-color: var(--bg-white);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    margin-bottom: 10px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

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

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

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

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

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

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

.comparison-table td:first-child {
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.benefit-box .benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.benefit-box h3 {
    margin-bottom: 10px;
}

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

/* Booking Steps */
.process-booking {
    background-color: var(--bg-light);
}

.booking-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.booking-step {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.booking-step h3 {
    margin-bottom: 10px;
}

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

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

.contact-grid {
    display: flex;
    gap: 50px;
}

.contact-info,
.contact-details {
    flex: 1;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h2,
.info-block h3 {
    margin-bottom: 15px;
}

.info-block p {
    color: var(--text-gray);
    line-height: 1.7;
}

.info-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

.detail-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.detail-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.detail-card h3 {
    margin-bottom: 15px;
}

.detail-card p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

/* Company Info */
.company-info-section {
    background-color: var(--bg-light);
}

.company-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.company-detail-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
}

.company-detail-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.company-detail-item p {
    color: var(--text-gray);
}

/* Contact Reasons */
.contact-reasons {
    background-color: var(--bg-white);
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.reason-card {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.reason-card h3 {
    margin-bottom: 10px;
}

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

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

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.thank-you-content h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.next-steps {
    margin: 50px 0;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    margin-top: 30px;
}

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

.step-item .step-number {
    min-width: 40px;
    font-size: 1.8rem;
}

.step-text h3 {
    margin-bottom: 5px;
}

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

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.while-waiting {
    margin-top: 60px;
}

.suggestions-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.suggestion-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.suggestion-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.suggestion-card h3 {
    margin-bottom: 10px;
}

.suggestion-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.suggestion-card a {
    font-weight: 600;
}

/* Legal Pages */
.legal-content {
    background-color: var(--bg-white);
}

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

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-section p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.7;
}

.warning {
    background-color: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 15px;
    margin: 20px 0;
}

.note {
    background-color: #e7f3ff;
    border-left: 4px solid var(--secondary-color);
    padding: 15px;
    margin: 20px 0;
}

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

.story-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.mission-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.mission-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.mission-card h3 {
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.member-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.member-icon img {
    width: 100%;
    height: 100%;
}

.team-member h3 {
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-gray);
    line-height: 1.6;
}

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

.timeline {
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-color);
}

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

.timeline-year {
    position: absolute;
    left: -60px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.timeline-content {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    flex: 1;
}

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

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

/* Values Detailed */
.values-detailed {
    background-color: var(--bg-white);
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-block {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.value-block p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Partners */
.partners-section {
    background-color: var(--bg-light);
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.partner-item {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.partner-item h3 {
    margin-bottom: 10px;
}

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

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

.approach-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 50px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

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

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

.cookie-modal-content {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
}

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

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

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

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

.cookie-option span {
    font-weight: 600;
}

.cookie-option p {
    margin-left: 30px;
    margin-top: 5px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 30px 20px;
        gap: 10px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .route-feature,
    .route-feature.reverse {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-item {
        min-width: 150px;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .service-card {
        min-width: 100%;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-year {
        left: -40px;
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
}