* {
    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: #2d3436;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
}

.btn-accept {
    background-color: #3a5a40;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-split {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #3a5a40;
}

.header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

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

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #2d3436;
}

.main-nav a:hover {
    color: #3a5a40;
}

.ad-label {
    font-size: 12px;
    color: #636e72;
    padding: 6px 12px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.hero-split {
    display: flex;
    flex-direction: row;
    min-height: 600px;
}

.hero-image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.hero-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-content-side h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2d3436;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content-side p {
    font-size: 18px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3a5a40;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 80px 40px;
}

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

.intro-content {
    flex: 1;
    padding: 0 60px;
}

.intro-content h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #2d3436;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.values-full {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.value-card {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    color: #3a5a40;
    margin-bottom: 16px;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #636e72;
}

.routes-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 18px;
    color: #636e72;
}

.route-split {
    display: flex;
    flex-direction: row;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.route-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.route-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.route-details {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.route-details h3 {
    font-size: 32px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.route-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 24px;
}

.route-meta {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 24px;
}

.route-duration,
.route-price {
    font-size: 15px;
    font-weight: 600;
    color: #3a5a40;
}

.btn-select {
    padding: 14px 28px;
    background-color: #3a5a40;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

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

.form-split {
    display: flex;
    flex-direction: row;
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.form-intro {
    flex: 1;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #636e72;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    background-color: #ffffff;
    font-family: inherit;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: #3a5a40;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    width: 100%;
}

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

.testimonials-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 48px;
    font-weight: 700;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.testimonial-card cite {
    font-size: 14px;
    color: #3a5a40;
    font-weight: 600;
    font-style: normal;
}

.footer {
    background-color: #2d3436;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: row;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

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

.footer-col ul li a {
    font-size: 14px;
    color: #b2bec3;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

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

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

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

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

.about-content-side {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.about-content-side h1 {
    font-size: 48px;
    color: #2d3436;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-content-side p {
    font-size: 17px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 20px;
}

.about-image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.story-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

.story-block h2 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 16px;
}

.story-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 28px;
    color: #2d3436;
    margin-bottom: 16px;
    font-weight: 700;
}

.story-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 16px;
}

.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.team-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 48px;
    font-weight: 700;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.team-member {
    flex: 1;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 24px;
    color: #2d3436;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-member .role {
    font-size: 14px;
    color: #3a5a40;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #636e72;
}

.values-detailed {
    padding: 80px 40px;
    background-color: #ffffff;
}

.values-container-full {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.value-detailed {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-detailed h3 {
    font-size: 24px;
    color: #3a5a40;
    margin-bottom: 16px;
    font-weight: 600;
}

.value-detailed p {
    font-size: 16px;
    line-height: 1.6;
    color: #636e72;
}

.services-hero {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-content h1 {
    font-size: 48px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #636e72;
}

.services-detailed {
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-item-split {
    display: flex;
    flex-direction: row;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-item-split.reverse {
    flex-direction: row-reverse;
}

.service-image-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-content-right {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
}

.service-content-right h2 {
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content-right h3 {
    font-size: 22px;
    color: #3a5a40;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-content-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 20px;
}

.service-content-right ul {
    margin-left: 20px;
    margin-bottom: 24px;
}

.service-content-right ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 12px;
}

.service-pricing {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 13px;
    color: #636e72;
    margin-bottom: 4px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #3a5a40;
}

.booking-cta-section {
    padding: 80px 40px;
    background-color: #3a5a40;
    text-align: center;
}

.booking-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-cta-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.booking-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.booking-cta-content .cta-primary {
    background-color: #ffffff;
    color: #3a5a40;
}

.booking-cta-content .cta-primary:hover {
    background-color: #f8f9fa;
}

.contact-hero {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    color: #2d3436;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 18px;
    color: #636e72;
}

.contact-content-split {
    display: flex;
    flex-direction: row;
    padding: 80px 40px;
}

.contact-info-side {
    flex: 1;
    padding-right: 60px;
}

.contact-block {
    margin-bottom: 48px;
}

.contact-block h2 {
    font-size: 28px;
    color: #2d3436;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 18px;
    color: #3a5a40;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    height: 500px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-placeholder p {
    font-size: 16px;
    color: #ffffff;
    text-align: center;
}

.contact-faq {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.contact-faq h2 {
    text-align: center;
    font-size: 36px;
    color: #2d3436;
    margin-bottom: 48px;
    font-weight: 700;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    color: #2d3436;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #636e72;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
    min-height: 600px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background-color: #3a5a40;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-main {
    font-size: 18px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 48px;
}

.thanks-details {
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 24px;
    color: #2d3436;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 8px;
}

.thanks-next {
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 24px;
    color: #2d3436;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-next ol {
    margin-left: 20px;
}

.thanks-next ol li {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 12px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

.btn-primary {
    background-color: #3a5a40;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3a5a40;
    border: 2px solid #3a5a40;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #2d3436;
    margin-bottom: 24px;
    font-weight: 700;
}

.legal-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 28px;
    color: #2d3436;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: #3a5a40;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 16px;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 8px;
}

.legal-content a {
    color: #3a5a40;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #588157;
}

.legal-date {
    margin-top: 48px;
    font-size: 14px;
    color: #b2bec3;
    font-style: italic;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 20px;
    }

    .hero-split,
    .intro-split,
    .intro-split.reverse,
    .route-split,
    .route-split.reverse,
    .form-split,
    .about-hero-split,
    .story-split-reverse,
    .contact-content-split,
    .service-item-split,
    .service-item-split.reverse {
        flex-direction: column;
    }

    .values-container,
    .testimonials-grid,
    .footer-columns,
    .team-grid,
    .values-container-full {
        flex-direction: column;
    }

    .hero-content-side,
    .intro-content,
    .route-details,
    .form-intro,
    .about-content-side,
    .service-content-right {
        padding: 40px 20px;
    }

    .hero-content-side h1,
    .about-content-side h1,
    .services-hero-content h1,
    .contact-hero h1,
    .thanks-container h1 {
        font-size: 32px;
    }

    .intro-content h2,
    .form-intro h2,
    .story-block h2,
    .team-section h2,
    .contact-faq h2,
    .service-content-right h2 {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }
}