/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a3a28;
    background-color: #ffffff;
}

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

a {
    color: #2d5a3d;
    text-decoration: none;
}

a:hover {
    color: #1a3a28;
}

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

/* Header and navigation */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #2d5a3d;
    transition: all 0.3s;
}

.nav-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
}

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

.nav-menu li {
    padding: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 20px;
    color: #1a3a28;
    transition: background 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #e8f4ea;
    color: #2d5a3d;
}

/* Hero sections */
.hero {
    background: linear-gradient(135deg, #e8f4ea 0%, #c8e6d0 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a3a28;
}

.hero-lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #2d5a3d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    background: linear-gradient(135deg, #2d5a3d 0%, #1a3a28 100%);
    padding: 3rem 0;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.page-hero .hero-lead {
    color: #e8f4ea;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.btn-primary {
    background: #2d5a3d;
    color: #ffffff;
    border-color: #2d5a3d;
}

.btn-primary:hover {
    background: #1a3a28;
    border-color: #1a3a28;
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #2d5a3d;
    border-color: #2d5a3d;
}

.btn-secondary:hover {
    background: #2d5a3d;
    color: #ffffff;
}

/* Sections */
section {
    padding: 3rem 0;
}

section h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: #1a3a28;
    text-align: center;
}

section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #4a4a4a;
}

.lead-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: #2d5a3d;
    margin-bottom: 2rem;
}

/* Company intro */
.company-intro {
    background: #f9f9f9;
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-text p {
    margin-bottom: 1rem;
}

.intro-image svg {
    width: 100%;
    height: auto;
}

/* Values grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

/* Featured trips */
.featured-trips {
    background: #f9f9f9;
}

.trips-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trip-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.trip-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.trip-icon svg {
    width: 100%;
    height: 100%;
}

.trip-card h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.trip-card p {
    text-align: center;
    margin-bottom: 1rem;
}

.trip-duration {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    color: #666;
    margin-top: 1rem;
}

/* Philosophy */
.philosophy {
    background: #2d5a3d;
    color: #ffffff;
}

.philosophy h2 {
    color: #ffffff;
}

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

.philosophy-content .lead-text {
    color: #e8f4ea;
    text-align: center;
}

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

.point h3 {
    color: #f4d35e;
}

.point p {
    color: #e8f4ea;
}

/* Stats */
.stats {
    background: #f9f9f9;
}

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

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d5a3d;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #1a3a28;
}

.testimonial footer {
    font-size: 0.875rem;
    font-style: normal;
    color: #666;
}

/* Process */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e8f4ea;
    background: #2d5a3d;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h3 {
    margin-top: 0.5rem;
}

/* FAQ */
.faq {
    background: #f9f9f9;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1a3a28;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #2d5a3d;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #4a4a4a;
}

/* CTA sections */
.cta-final,
.cta-section {
    background: linear-gradient(135deg, #2d5a3d 0%, #1a3a28 100%);
    color: #ffffff;
    text-align: center;
}

.cta-final h2,
.cta-section h2 {
    color: #ffffff;
}

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

.cta-content p {
    color: #e8f4ea;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #1a3a28;
    color: #e8f4ea;
    padding: 3rem 0 1rem;
}

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

.footer-col h3,
.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: #e8f4ea;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #f4d35e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 244, 234, 0.2);
    color: #c8e6d0;
    font-size: 0.875rem;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a3a28;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.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 {
    margin: 0;
    text-align: center;
}

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

/* Cookie modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 20px;
}

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

.modal-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    text-align: left;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 4px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    color: #1a3a28;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 2rem;
    font-size: 0.875rem;
    color: #666;
}

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

/* Services page */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #4a4a4a;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 4px solid #2d5a3d;
}

.service-card .service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.service-card h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 1rem;
}

.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 4px;
}

.detail-item {
    font-size: 0.9375rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5a3d;
}

.price-note {
    font-size: 0.875rem;
    color: #666;
}

/* Service benefits */
.service-benefits {
    background: #f9f9f9;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.benefit-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.benefits-note {
    margin-top: 2rem;
    padding: 1rem;
    background: #fff9e6;
    border-left: 4px solid #f4d35e;
    border-radius: 4px;
}

/* Booking process */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: #2d5a3d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 1rem;
}

/* Contact page */
.contact-info {
    padding: 3rem 0;
}

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

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    margin-bottom: 0.5rem;
}

.contact-detail a {
    color: #2d5a3d;
    font-weight: 600;
}

.contact-detail .note {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

.info-box {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.info-box h3 {
    margin-bottom: 0.75rem;
}

/* About company */
.about-company {
    background: #f9f9f9;
}

.company-data {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.data-item {
    padding: 0.75rem;
    background: #ffffff;
    border-radius: 4px;
}

/* Contact FAQ */
.contact-faq {
    padding: 3rem 0;
}

/* Directions */
.directions {
    background: #f9f9f9;
}

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direction-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

/* Trust indicators */
.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-list {
    list-style-position: inside;
    margin-top: 1.5rem;
}

.trust-list li {
    padding: 0.5rem 0;
}

/* Newsletter info */
.newsletter-info {
    background: #f9f9f9;
}

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

.text-link {
    color: #2d5a3d;
    font-weight: 600;
    text-decoration: underline;
}

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

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

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

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

.what-next {
    background: #f9f9f9;
}

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

.step-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

/* About page */
.story {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    margin-bottom: 1.5rem;
}

/* Mission */
.mission {
    background: #f9f9f9;
}

.mission-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-text p {
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

/* Team */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.member-avatar svg {
    width: 100%;
    height: 100%;
}

.member-role {
    color: #666;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

/* Approach */
.approach {
    background: #f9f9f9;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: -2rem;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2d5a3d;
    background: #e8f4ea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

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

/* Trust */
.trust {
    background: #f9f9f9;
}

.partners-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partner-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

/* Why trust */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

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

/* Legal pages */
.legal-content {
    padding: 3rem 0;
}

.legal-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a3a28;
}

.update-date {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.legal-section {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
    color: #1a3a28;
}

.legal-section h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

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

.legal-section a {
    color: #2d5a3d;
    text-decoration: underline;
}

/* Tablet styles */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        border: none;
        padding: 0;
        gap: 2rem;
    }

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

    .nav-menu a:hover,
    .nav-menu a.active {
        background: none;
        color: #2d5a3d;
        border-bottom: 2px solid #2d5a3d;
    }

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

    .intro-grid {
        flex-direction: row;
        align-items: center;
    }

    .intro-text,
    .intro-image {
        flex: 1;
    }

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

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

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

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

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

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

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

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

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .footer-col {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

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

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

    .process-flow {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .contact-grid {
        flex-direction: row;
        gap: 3rem;
    }

    .contact-main {
        flex: 2;
    }

    .contact-sidebar {
        flex: 1;
    }

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

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

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

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

    .step-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .mission-grid {
        flex-direction: row;
        gap: 3rem;
    }

    .mission-text,
    .mission-values {
        flex: 1;
    }

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

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

    .approach-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

/* Desktop styles */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    section {
        padding: 4rem 0;
    }

    section h2 {
        font-size: 2.25rem;
    }

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

    .trip-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

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

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

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

    .philosophy-points {
        flex-direction: row;
    }

    .point {
        flex: 1;
    }

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

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

    .process-flow {
        flex-direction: row;
    }

    .process-step {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

    .approach-content {
        flex-direction: row;
    }

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