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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8ba888;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f9f9f7;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--background-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-section {
    display: flex;
    align-items: center;
    min-height: 500px;
    background-color: var(--background-light);
    padding: 60px 20px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
}

.hero-image-container {
    flex: 1;
    background-color: var(--secondary-color);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-cards {
    padding: 80px 20px;
    background-color: var(--background-white);
}

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

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

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.featured-routes {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.featured-routes h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.route-showcase {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.route-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.route-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--secondary-color);
}

.route-card-content {
    padding: 25px;
}

.route-card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.route-card-content p {
    color: var(--text-light);
}

.services-preview {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 20px;
}

.booking-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.booking-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.booking-intro {
    flex: 1;
}

.booking-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.booking-intro p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.booking-intro img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--secondary-color);
    object-fit: cover;
}

.booking-form-container {
    flex: 1;
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.booking-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1f4538;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--background-white);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #6f8f6d;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.trust-markers {
    padding: 60px 20px;
    background-color: var(--primary-color);
}

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

.trust-item {
    text-align: center;
    color: var(--background-white);
}

.trust-item h4 {
    font-size: 42px;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 16px;
    opacity: 0.9;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 60px 20px 20px;
}

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: var(--background-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: transparent;
    color: var(--background-white);
    border: 1px solid var(--background-white);
}

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

.page-hero {
    background-color: var(--background-light);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 20px;
}

.content-layout {
    display: flex;
    gap: 60px;
}

.content-main {
    flex: 2;
}

.content-main h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    margin: 40px 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--secondary-color);
    object-fit: cover;
}

.values-cards {
    display: flex;
    gap: 25px;
    margin: 40px 0;
    flex-wrap: wrap;
}

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

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
}

.content-sidebar {
    flex: 1;
}

.sidebar-card {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.sidebar-card p {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.sidebar-image {
    margin-top: 30px;
}

.sidebar-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--secondary-color);
    object-fit: cover;
}

.services-detailed {
    padding: 80px 20px;
}

.service-full {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--secondary-color);
    object-fit: cover;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

.service-details h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-details ul {
    margin: 15px 0 20px 25px;
    color: var(--text-light);
}

.service-details ul li {
    margin-bottom: 10px;
}

.service-details p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-details .btn-primary {
    margin-top: 25px;
}

.service-comparison {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.service-comparison h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.comparison-table {
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-header,
.comparison-row {
    display: flex;
}

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

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

.comparison-cell {
    flex: 1;
    padding: 15px 20px;
    border-right: 1px solid var(--border-color);
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell:first-child {
    flex: 1.5;
    font-weight: 600;
}

.service-cta {
    padding: 80px 20px;
    text-align: center;
}

.service-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-section {
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.contact-note {
    font-size: 14px;
    margin-top: 10px;
    font-style: italic;
}

.contact-image {
    margin-top: 30px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--secondary-color);
    object-fit: cover;
}

.contact-map {
    flex: 1;
}

.contact-map h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.map-placeholder {
    margin-bottom: 30px;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    background-color: var(--secondary-color);
    object-fit: cover;
}

.location-details h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.location-details p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
}

.thanks-section {
    padding: 80px 20px;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-details {
    text-align: left;
    margin-bottom: 50px;
}

.thanks-details h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

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

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.thanks-info {
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.thanks-actions {
    margin-bottom: 50px;
}

.thanks-image {
    margin-top: 50px;
}

.thanks-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    background-color: var(--secondary-color);
    object-fit: cover;
}

.legal-content {
    padding: 80px 20px;
}

.legal-content .container {
    max-width: 900px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 20px 30px;
    color: var(--text-light);
}

.legal-content ul li {
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.legal-content a:hover {
    text-decoration: none;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background-color: var(--background-white);
}

.cookie-table thead {
    background-color: var(--primary-color);
    color: var(--background-white);
}

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

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

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .card-grid,
    .route-showcase,
    .services-grid {
        flex-direction: column;
    }

    .booking-wrapper,
    .content-layout,
    .service-full,
    .contact-layout {
        flex-direction: column;
    }

    .service-full.reverse {
        flex-direction: column;
    }

    .nav-menu {
        gap: 20px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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