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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f3f;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2d5f3f;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 8px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 60px;
    background-color: #f8f9fa;
}

.split-right {
    background-color: #e8ede8;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #1f4530;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #2d5f3f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #2d5f3f;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.philosophy-section,
.approach-split,
.methodology-split,
.values-section,
.contact-content {
    padding: 100px 0;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-container .split-left,
.split-container .split-right {
    flex: 1;
}

.split-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.content-block h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.content-block p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
}

.content-block h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.content-block ul {
    margin-left: 24px;
    margin-bottom: 18px;
}

.content-block li {
    margin-bottom: 10px;
    color: #4a5568;
}

.routes-preview {
    padding: 100px 0;
    background-color: #ffffff;
}

.routes-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.route-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.route-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #e8ede8;
}

.route-details {
    padding: 28px;
}

.route-details h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.route-details p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 16px;
}

.route-link {
    display: inline-block;
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.route-link:hover {
    color: #1f4530;
}

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

.booking-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.booking-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.booking-info p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 24px;
}

.benefits-list {
    list-style: none;
    margin-left: 0;
}

.benefits-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: #4a5568;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

.booking-form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d5f3f;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #1f4530;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f1f5f9;
}

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

.disclaimer-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

.disclaimer-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 14px;
    color: #a0a0a0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.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;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2d5f3f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1f4530;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 80px 0 60px;
    text-align: center;
    background-color: #f8f9fa;
}

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

.lead {
    font-size: 20px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.about-story,
.philosophy-detailed,
.team-approach,
.services-detailed {
    padding: 80px 0;
}

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

.content-centered h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.content-centered p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.feature-item h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.service-item {
    margin-bottom: 80px;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.booking-cta {
    padding: 80px 0;
    background-color: #2d5f3f;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: #e8ede8;
    margin-bottom: 32px;
}

.booking-cta .cta-primary {
    background-color: #ffffff;
    color: #2d5f3f;
}

.booking-cta .cta-primary:hover {
    background-color: #f8f9fa;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
}

.info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.info-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.location-note {
    padding: 80px 0;
}

.thanks-hero {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.confirmation-icon {
    margin: 40px 0;
}

.confirmation-details h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin: 40px 0 32px;
    font-weight: 700;
}

.next-steps {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 40px;
}

.step-item {
    margin-bottom: 32px;
}

.step-item h3 {
    font-size: 20px;
    color: #2d5f3f;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.selected-service {
    margin: 40px 0;
    padding: 24px;
    background-color: #e8f5e8;
    border-radius: 8px;
    display: none;
}

.selected-route-info h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.selected-route-info p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
}

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

.preparation-tips {
    padding: 80px 0;
    background-color: #ffffff;
}

.preparation-tips h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.tip-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 28px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.tip-card h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.tip-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.legal-page {
    padding: 60px 0;
}

.updated-date {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 40px;
    text-align: center;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 28px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.6;
}

.legal-content a {
    color: #2d5f3f;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1f4530;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .split-left {
        padding: 40px 20px;
    }

    .split-right {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

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

    .split-container.reverse {
        flex-direction: column;
    }

    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 20px;
    }

    .nav.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .route-card {
        flex: 1 1 100%;
    }

    .feature-item,
    .info-card,
    .tip-card {
        flex: 1 1 100%;
    }

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

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .content-block h2 {
        font-size: 28px;
    }

    .routes-preview h2,
    .cta-content h2 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .thanks-content h1 {
        font-size: 36px;
    }

    .booking-form-container {
        padding: 28px 20px;
    }

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