:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1e4620;
    --primary-light: #3a7a3c;
    --secondary-color: #6b9b37;
    --accent-color: #f4a623;
    --text-dark: #2d2d2d;
    --text-light: #5a5a5a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
}

* {
    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: var(--text-dark);
    background-color: var(--bg-white);
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    padding: 1rem 0;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    padding: 0.5rem 0;
    text-align: center;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f5e9 100%);
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

section {
    padding: 3rem 0;
}

.page-header {
    padding: 3rem 0 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.section-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-light);
}

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

.content-block h2 {
    margin-bottom: 1.25rem;
}

.content-block p {
    margin-bottom: 1.25rem;
}

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

.tour-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tour-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
}

.tour-icon img {
    width: 100%;
    height: 100%;
}

.tour-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.tour-duration {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: var(--bg-light);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.benefit-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.stats {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--bg-white);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.75rem;
}

.testimonials {
    background-color: var(--bg-light);
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.region-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.region-item {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.region-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq {
    background-color: var(--bg-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    text-align: left;
    background-color: var(--bg-white);
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
    margin-top: 0.5rem;
}

.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.member-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.member-icon img {
    width: 100%;
    height: 100%;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-year {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.timeline-item h3 {
    margin-bottom: 0.5rem;
}

.service-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.service-duration {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-features {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.included-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.included-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.included-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.included-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
    overflow-x: auto;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
}

.comparison-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
}

.comparison-row:nth-child(even) {
    background-color: var(--bg-light);
}

.comparison-cell {
    padding: 0.5rem 0;
}

.comparison-cell:first-child {
    font-weight: 600;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-block {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin-bottom: 0;
}

.info-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.info-list li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.direction-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.direction-block img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.direction-block h3 {
    margin-bottom: 0.75rem;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.info-block {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.info-block h3 {
    margin-bottom: 1rem;
}

.thank-you-page {
    padding: 4rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
}

.step-icon img {
    width: 100%;
    height: 100%;
}

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

.suggestion-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.suggestion-item h3 {
    margin-bottom: 0.75rem;
}

.suggestion-item a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.legal-content {
    margin: 2rem 0;
}

.legal-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cookie-table {
    display: flex;
    flex-direction: column;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-row {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
}

.cookie-row:nth-child(even):not(.cookie-header) {
    background-color: var(--bg-light);
}

.cookie-cell {
    padding: 0.5rem 0;
}

.cookie-cell:first-child {
    font-weight: 600;
}

.partnership-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.partnership-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.partnership-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.2);
    z-index: 2000;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    text-align: center;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    font-size: 0.9rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
        width: auto;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .tour-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .testimonial-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(50% - 1rem);
    }

    .region-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .region-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

    .included-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .included-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .comparison-row {
        flex-direction: row;
        padding: 0.75rem;
    }

    .comparison-cell {
        flex: 1;
        padding: 0.75rem;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-block {
        flex: 1;
    }

    .directions-grid {
        flex-direction: row;
    }

    .direction-block {
        flex: 1;
    }

    .info-blocks {
        flex-direction: row;
    }

    .info-block {
        flex: 1;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }

    .suggestions {
        flex-direction: row;
    }

    .suggestion-item {
        flex: 1;
    }

    .cookie-row {
        flex-direction: row;
    }

    .cookie-cell {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero {
        padding: 5rem 0;
    }

    .tour-card {
        flex: 1 1 calc(33.333% - 1.33rem);
    }

    .benefit-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .testimonial {
        flex: 1 1 calc(33.333% - 1.33rem);
    }

    .region-item {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .value-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .team-member {
        flex: 1 1 calc(33.333% - 1.33rem);
    }

    .included-item {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .direction-block {
        flex: 1 1 calc(33.333% - 1.33rem);
    }
}
