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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #7f8c8d;
    --accent-color: #c87137;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #ddd;
    --white: #ffffff;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 3px;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
}

.editorial-content {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.story-article {
    background-color: var(--white);
}

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

.hero-image-container {
    margin-bottom: 2.5rem;
    background-color: var(--bg-light);
}

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

.main-heading {
    font-size: 2.8rem;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text {
    font-size: 1.3rem;
    color: var(--secondary-color);
    line-height: 1.7;
    font-style: italic;
}

.story-section {
    margin-bottom: 3rem;
}

.section-heading {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    font-weight: 600;
}

.subsection-heading {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.body-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.inline-image-wrapper {
    margin: 2.5rem 0;
    background-color: var(--bg-light);
}

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

.image-caption {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: italic;
    text-align: center;
    padding: 0.8rem;
}

.cta-inline {
    text-align: center;
    margin: 2.5rem 0;
}

.cta-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-link:hover {
    background-color: #a65a2b;
    transform: translateY(-2px);
}

.tour-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.tour-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    transition: box-shadow 0.3s ease;
}

.tour-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tour-card-image {
    width: 100%;
    height: auto;
    margin-bottom: 1.2rem;
    border-radius: 4px;
    object-fit: cover;
}

.tour-card-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.tour-card-description {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tour-card-price {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.tour-select-btn {
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.tour-select-btn:hover {
    background-color: #1a2735;
    transform: translateY(-2px);
}

.booking-section {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 6px;
    margin-top: 3rem;
}

.booking-form {
    margin-top: 2rem;
}

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

.form-label {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.disclaimer-section {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin-top: 3rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-text {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 2rem;
    background-color: var(--bg-dark);
    color: var(--white);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-content a {
    color: var(--accent-color);
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

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

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

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.legal-section h2 {
    margin-top: 2rem;
}

.legal-section h3 {
    margin-top: 1.5rem;
}

.legal-list {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-list li {
    margin-bottom: 0.5rem;
}

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

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

.faq-question {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.tour-detail-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tour-detail-image-wrapper {
    background-color: var(--bg-light);
}

.tour-detail-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.tour-detail-content {
    flex: 1;
}

.tour-detail-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.tour-detail-price {
    font-size: 1.6rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1.2rem;
}

.tour-features {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.tour-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.tour-features li:last-child {
    border-bottom: none;
}

.thanks-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.thanks-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.thanks-list li {
    margin-bottom: 0.8rem;
}

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

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .ad-notice {
        width: 100%;
        text-align: left;
    }

    .editorial-content {
        padding: 0 1.5rem;
    }

    .main-heading {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .body-text {
        font-size: 1rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}