* {
    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.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

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

.navbar {
    padding: 16px 0;
}

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

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.nav-menu a:hover {
    color: #2d5a3d;
}

.hero-section {
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.3), rgba(44, 62, 80, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
}

.intro-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.intro-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d5a3d;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.featured-tours {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.tours-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

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

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tour-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #34495e;
}

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

.tour-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-details h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5a3d;
}

.tour-details p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
    flex: 1;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
    display: block;
}

.btn-select {
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-select:hover {
    background-color: #234a31;
}

.why-choose {
    padding: 80px 0;
    background-color: #ffffff;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    width: calc(33.333% - 20px);
    min-width: 280px;
    border-left: 4px solid #2d5a3d;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5a3d;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials-section .section-title {
    color: #ffffff;
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
    width: calc(33.333% - 20px);
    min-width: 280px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 14px;
    color: #ecf0f1;
    font-style: normal;
}

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

.booking-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.booking-card h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
    text-align: center;
}

.booking-card > p {
    text-align: center;
    color: #555;
    margin-bottom: 32px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.page-hero {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 18px;
    font-weight: 300;
}

.about-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.about-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

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

.about-image {
    flex: 1;
    min-width: 300px;
    background-color: #34495e;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2d5a3d;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.values-section {
    margin-top: 80px;
    margin-bottom: 60px;
}

.values-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5a3d;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.team-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.team-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.services-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-card-detailed {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-header {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    align-items: center;
}

.service-image-large {
    flex: 1;
    min-width: 300px;
    height: 300px;
    background-color: #34495e;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-intro {
    flex: 1;
    min-width: 300px;
}

.service-intro h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2d5a3d;
}

.price-display {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.service-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.service-details {
    padding: 0 30px 30px;
}

.service-details h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
}

.service-details ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.service-details ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.booking-cta {
    padding: 80px 0;
    background-color: #2d5a3d;
}

.cta-card {
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5a3d;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2d5a3d;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.contact-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.contact-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
}

.contact-card.full-width {
    flex-basis: 100%;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2d5a3d;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    margin-top: 20px;
    color: #2c3e50;
}

.contact-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.contact-info {
    margin-top: 20px;
}

.info-item {
    margin-bottom: 24px;
}

.info-item h3 {
    margin-top: 0;
}

.directions-info {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #ddd;
}

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

.process-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.process-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.thanks-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 12px;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2d5a3d;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.confirmation-details {
    margin-bottom: 40px;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.step-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d5a3d;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2d5a3d;
}

.legal-section h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-section a {
    color: #2d5a3d;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #234a31;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 32px;
    }

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

    .tour-card,
    .benefit-card,
    .testimonial-card,
    .value-card {
        width: 100%;
    }

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

    .service-header {
        flex-direction: column;
    }

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

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