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

:root {
    --primary-color: #2c4a3e;
    --secondary-color: #8b6f47;
    --accent-color: #a78a5e;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 15px;
}

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

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

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

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.ad-notice {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    padding: 5px 12px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.editorial-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.hero-story {
    margin-bottom: 80px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    background-color: var(--bg-light);
}

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

.story-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: normal;
}

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.narrative-section {
    margin-bottom: 80px;
}

.text-block h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: normal;
}

.text-block p {
    margin-bottom: 20px;
}

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

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

.services-preview {
    margin-bottom: 80px;
}

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

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--bg-light);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: block;
    object-fit: cover;
    background-color: var(--bg-light);
}

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

.service-card p {
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: 20px;
}

.story-block {
    margin-bottom: 80px;
}

.text-content-wide h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: normal;
}

.text-content-wide p {
    margin-bottom: 20px;
}

.inline-content-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    display: block;
    object-fit: cover;
    background-color: var(--bg-light);
}

.booking-section {
    margin-bottom: 80px;
    background-color: var(--bg-light);
    padding: 60px 40px;
    margin-left: -40px;
    margin-right: -40px;
}

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

.booking-content > p {
    margin-bottom: 40px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
}

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

.form-group label {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-family: inherit;
    background-color: var(--bg-white);
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 18px;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.testimonials-section {
    margin-bottom: 80px;
}

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

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
}

.testimonial p {
    margin-bottom: 15px;
    font-size: 19px;
}

.testimonial cite {
    font-style: normal;
    font-weight: bold;
    color: var(--text-light);
}

.final-cta {
    margin-bottom: 60px;
    text-align: center;
    padding: 60px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    margin-left: -40px;
    margin-right: -40px;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: normal;
    color: var(--bg-white);
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 19px;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
    border: 2px solid var(--accent-color);
}

.btn-cta:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border-color: var(--bg-white);
}

.btn-primary {
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    padding: 12px 24px;
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.page-header {
    margin-bottom: 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

.subtitle {
    font-size: 22px;
    color: var(--text-light);
}

.about-story,
.mission-section,
.team-section,
.approach-section,
.business-model {
    margin-bottom: 80px;
}

.story-content h2,
.mission-content h2,
.team-section h2,
.approach-content h2,
.model-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: normal;
}

.story-content p,
.mission-content p,
.team-text p,
.approach-content p,
.model-content p {
    margin-bottom: 20px;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    padding: 25px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: normal;
}

.full-width-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    display: block;
    object-fit: cover;
    background-color: var(--bg-light);
}

.team-intro {
    margin-bottom: 40px;
}

.approach-list {
    list-style-position: outside;
    margin-left: 25px;
    margin-bottom: 40px;
}

.approach-list li {
    margin-bottom: 12px;
}

.content-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    display: block;
    object-fit: cover;
    background-color: var(--bg-light);
}

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

.cta-box {
    background-color: var(--bg-light);
    padding: 50px;
    text-align: center;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: normal;
}

.cta-box p {
    margin-bottom: 30px;
    font-size: 18px;
}

.services-intro {
    margin-bottom: 60px;
}

.intro-text {
    background-color: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 80px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-image {
    width: 100%;
    background-color: var(--bg-light);
}

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

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

.service-description {
    margin-bottom: 30px;
    font-size: 18px;
}

.service-highlights {
    margin-bottom: 30px;
}

.service-highlights h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: normal;
}

.service-highlights ul {
    list-style-position: outside;
    margin-left: 25px;
}

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

.service-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 25px;
    background-color: var(--bg-light);
}

.service-info .duration,
.service-info .group-size {
    font-size: 16px;
    color: var(--text-light);
}

.service-info .price {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: 10px;
}

.booking-info {
    background-color: var(--bg-light);
    padding: 50px;
    text-align: center;
}

.info-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

.info-content p {
    margin-bottom: 20px;
    font-size: 17px;
}

.contact-content {
    margin-bottom: 80px;
}

.contact-intro {
    margin-bottom: 50px;
}

.contact-intro p {
    font-size: 18px;
}

.contact-intro a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
}

.contact-intro a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.contact-details-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: normal;
}

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

.info-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: normal;
}

.info-item p {
    line-height: 1.8;
}

.email-display {
    font-weight: bold;
    color: var(--secondary-color);
}

.email-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.contact-image-block {
    width: 100%;
    background-color: var(--bg-light);
}

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

.faq-section {
    margin-bottom: 80px;
}

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

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

.faq-item {
    padding: 25px;
    background-color: var(--bg-light);
}

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

.faq-item p {
    line-height: 1.6;
}

.faq-item a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
}

.faq-item a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

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

.location-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: normal;
}

.location-content p {
    margin-bottom: 20px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

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

.thanks-message {
    margin-bottom: 60px;
    text-align: left;
}

.thanks-message p {
    margin-bottom: 20px;
}

.next-steps {
    list-style-position: outside;
    margin-left: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.next-steps li {
    margin-bottom: 10px;
}

.thanks-info,
.thanks-actions {
    margin-bottom: 60px;
    text-align: left;
}

.thanks-info h2,
.thanks-actions h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

.thanks-info p,
.thanks-actions p {
    margin-bottom: 20px;
}

.thanks-image {
    margin: 50px 0;
    background-color: var(--bg-light);
}

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

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    align-items: center;
}

.action-buttons .btn-secondary,
.action-buttons .btn-primary {
    width: 100%;
    max-width: 300px;
    text-align: center;
    text-decoration: none;
    padding: 15px 30px;
}

.action-buttons .btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.action-buttons .btn-secondary:hover {
    background-color: var(--bg-light);
}

.thanks-note {
    background-color: var(--bg-light);
    padding: 25px;
    margin-top: 40px;
    text-align: left;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 50px;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: normal;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--primary-color);
    font-weight: normal;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-section ul {
    list-style-position: outside;
    margin-left: 25px;
    margin-bottom: 15px;
}

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

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
}

.legal-section a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table thead {
    background-color: var(--bg-light);
}

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

.cookie-table th {
    font-weight: bold;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .header-content {
        padding: 15px 20px;
    }

    .main-nav {
        gap: 15px;
        font-size: 14px;
    }

    .editorial-layout {
        padding: 40px 20px;
    }

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

    .intro-text {
        font-size: 18px;
    }

    .text-block h2,
    .services-preview h2 {
        font-size: 28px;
    }

    .booking-section {
        padding: 40px 20px;
        margin-left: -20px;
        margin-right: -20px;
    }

    .final-cta {
        padding: 40px 20px;
        margin-left: -20px;
        margin-right: -20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .legal-page {
        padding: 40px 20px;
    }

    .legal-content h1 {
        font-size: 32px;
    }
}