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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.navbar {
    background-color: #1a3a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.ad-label {
    font-size: 0.75rem;
    color: #95c5b0;
    border: 1px solid #95c5b0;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2c5f4f;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.25rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.intro-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.intro-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.intro-section p {
    font-size: 1.125rem;
    color: #4a5568;
}

.featured-routes {
    padding: 5rem 0;
    background-color: #ffffff;
}

.routes-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.route-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.route-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #d1e7dd;
}

.route-info {
    padding: 1.5rem;
}

.route-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a3a2e;
}

.route-info p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.route-link {
    color: #2c5f4f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2c5f4f;
    transition: opacity 0.3s;
}

.route-link:hover {
    opacity: 0.7;
}

.why-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.split-container {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.split-image {
    flex: 1;
    min-width: 300px;
    background-color: #d1e7dd;
}

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

.split-content {
    flex: 1;
    min-width: 300px;
}

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.split-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    color: #4a5568;
}

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

.benefits-list li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #2c3e50;
}

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

.testimonials-section {
    padding: 5rem 0;
    background-color: #1a3a2e;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.testimonial-block {
    margin-bottom: 2.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.testimonial-author {
    text-align: right;
    color: #95c5b0;
    font-weight: 600;
}

.booking-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.booking-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a3a2e;
}

.booking-intro {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    font-size: 1.0625rem;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #1a3a2e;
}

.safety-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.safety-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #1a3a2e;
}

.safety-section p {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.8;
}

.footer {
    background-color: #1a3a2e;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: #95c5b0;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 0.8;
}

.footer-col p {
    line-height: 1.8;
    color: #e0e0e0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2c5f4f;
    color: #95c5b0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 8px 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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.page-header {
    background-color: #1a3a2e;
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.header-subtitle {
    font-size: 1.125rem;
    color: #95c5b0;
}

.about-intro {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.lead-text {
    font-size: 1.25rem;
    color: #2c3e50;
    line-height: 1.8;
}

.story-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.values-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1a3a2e;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5f4f;
}

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.team-section p {
    margin-bottom: 1.25rem;
    color: #4a5568;
    font-size: 1.0625rem;
}

.commitment-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.commitment-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
    background-color: #d1e7dd;
}

.commitment-text h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #1a3a2e;
}

.commitment-text p {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.8;
}

.services-grid-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.service-card {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

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

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: #d1e7dd;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

.service-details h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a3a2e;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.service-description {
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #2c3e50;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f4f;
    font-weight: 700;
    font-size: 1.25rem;
}

.service-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2c5f4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #1a3a2e;
}

.included-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.included-section h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #1a3a2e;
}

.included-section p {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.8;
}

.contact-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a3a2e;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5f4f;
}

.contact-block p {
    color: #4a5568;
    line-height: 1.7;
}

.hours-note {
    font-size: 0.9375rem;
    color: #6c757d;
    margin-top: 0.75rem;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    background-color: #d1e7dd;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.directions-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.directions-section h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #1a3a2e;
}

.directions-section p {
    margin-bottom: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
}

.response-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.response-section h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #1a3a2e;
}

.response-section p {
    color: #4a5568;
    line-height: 1.8;
}

.thanks-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
    text-align: center;
}

.thanks-message {
    font-size: 1.25rem;
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #2c5f4f;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.7;
}

.preparation-info {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.preparation-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c5f4f;
}

.preparation-info p {
    color: #4a5568;
    line-height: 1.8;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.thanks-btn {
    padding: 0.75rem 1.5rem;
    background-color: #2c5f4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-btn:hover {
    background-color: #1a3a2e;
}

.thanks-btn.secondary {
    background-color: #6c757d;
}

.thanks-btn.secondary:hover {
    background-color: #5a6268;
}

.contact-reminder {
    text-align: center;
    color: #6c757d;
    font-size: 0.9375rem;
}

.legal-content {
    padding: 4rem 0;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a3a2e;
}

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

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c5f4f;
}

.legal-content p {
    margin-bottom: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.75rem;
    color: #2c3e50;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }

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

    .hero-overlay p {
        font-size: 1rem;
    }

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

    .service-card,
    .service-card.reverse {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

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