* {
    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: #333;
    background-color: #fff;
}

.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin: 0 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: #ddd;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.cta-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #2c3e50;
    cursor: pointer;
    font-size: 1rem;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #fff;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.intro-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.tours-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
}

.tour-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.tour-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.tour-info {
    padding: 1.75rem;
}

.tour-info h3 {
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
    color: #2c3e50;
}

.tour-info p {
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.tour-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 1rem;
}

.select-tour-btn {
    width: 100%;
    padding: 0.875rem;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.select-tour-btn:hover {
    background-color: #34495e;
}

.booking-split {
    display: flex;
    min-height: 600px;
}

.booking-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ecf0f1;
}

.booking-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
}

.booking-content p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.8;
}

.booking-form-container {
    flex: 1;
    padding: 4rem;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.booking-form {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #e67e22;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.values-split {
    display: flex;
    min-height: 500px;
}

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

.values-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.values-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.values-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
    color: #e67e22;
}

.value-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fffbf0;
    border-top: 2px solid #f1c40f;
    border-bottom: 2px solid #f1c40f;
}

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

.disclaimer-content p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.8;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p {
    font-size: 0.9375rem;
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

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

.footer-col ul li a:hover {
    color: #e67e22;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-accept {
    padding: 0.75rem 1.75rem;
    background-color: #e67e22;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept:hover {
    background-color: #d35400;
}

.cookie-reject {
    padding: 0.75rem 1.75rem;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-reject:hover {
    background-color: #fff;
    color: #2c3e50;
}

.cookie-link {
    color: #ecf0f1;
    text-decoration: underline;
    font-size: 0.875rem;
}

.cookie-link:hover {
    color: #fff;
}

.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: #ecf0f1;
}

.about-split {
    display: flex;
    min-height: 500px;
}

.about-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.mission-split {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

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

.mission-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.mission-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.mission-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.team-member {
    flex: 1 1 calc(33.333% - 3rem);
    min-width: 280px;
}

.member-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.375rem;
}

.member-role {
    font-size: 0.9375rem;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
}

.values-full {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.services-intro {
    padding: 3rem 2rem;
    background-color: #fff;
}

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

.services-intro-content p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.8;
}

.tour-detail-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.tour-detail {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    min-height: 450px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.tour-detail.reverse {
    flex-direction: row-reverse;
}

.tour-detail-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.tour-detail-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-detail-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tour-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 0.75rem;
}

.tour-duration {
    font-size: 0.9375rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.tour-detail-info > p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tour-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tour-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #555;
}

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

.tour-select-btn {
    align-self: flex-start;
}

.booking-cta {
    padding: 4rem 2rem;
    background-color: #2c3e50;
    text-align: center;
}

.booking-cta h2 {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 1rem;
}

.booking-cta p {
    font-size: 1.125rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 4rem;
    background-color: #fff;
}

.contact-info h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

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

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

.contact-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.note-text {
    font-size: 0.875rem;
    color: #999;
    font-style: italic;
}

.contact-map {
    flex: 1;
    background-color: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #d0d0d0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.map-placeholder p {
    font-size: 1.125rem;
    color: #666;
    font-weight: 600;
}

.contact-cta {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-details {
    margin-bottom: 2.5rem;
}

.thanks-details p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.thanks-next {
    text-align: left;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-next h3 {
    font-size: 1.375rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-next ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #555;
}

.thanks-next ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: 700;
}

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

.legal-page {
    padding: 3rem 2rem;
    background-color: #fff;
    min-height: 600px;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.legal-update {
    font-size: 0.9375rem;
    color: #999;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.375rem;
    color: #34495e;
    margin-top: 1.75rem;
    margin-bottom: 0.875rem;
}

.legal-container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #e67e22;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 0.9375rem;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .booking-split,
    .values-split,
    .about-split,
    .mission-split,
    .tour-detail,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .values-split.reverse,
    .mission-split.reverse,
    .tour-detail.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .booking-content,
    .booking-form-container,
    .values-content,
    .about-content,
    .mission-content,
    .tour-detail-info,
    .contact-info {
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .ad-disclosure {
        margin: 0;
    }

    .tour-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 640px) {
    .tour-card,
    .value-card,
    .team-member {
        flex: 1 1 100%;
    }

    .nav-menu {
        gap: 1rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .thanks-content {
        padding: 2rem;
    }
}
