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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    background-color: #F5F3F0;
    color: #5D4E37;
    overflow-x: hidden;
}

.organic-section {
    position: relative;
    padding: 0;
    margin: 0;
}

.organic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    clip-path: ellipse(100% 100% at 50% 0%);
    z-index: -1;
}

.hero {
    background: linear-gradient(135deg, #D2691E, #CD853F);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #F5F3F0;
    clip-path: ellipse(150% 100% at 50% 100%);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    background: rgba(245, 243, 240, 0.2);
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    background: white;
    color: #D2691E;
    transform: translateY(-3px);
}

.content-section {
    padding: 6rem 2rem;
    position: relative;
}

.desert-section {
    background: linear-gradient(45deg, #F4A460, #DEB887);
    clip-path: ellipse(120% 100% at 30% 0%);
}

.earth-section {
    background: linear-gradient(-45deg, #CD853F, #A0522D);
    clip-path: ellipse(120% 100% at 70% 0%);
    color: white;
}

.sand-section {
    background: linear-gradient(135deg, #F5DEB3, #F4A460);
    clip-path: ellipse(100% 100% at 50% 0%);
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.content-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: currentColor;
    border-radius: 2px;
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.travel-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    transition: all 0.3s ease;
    font-weight: bold;
}

.travel-link:hover {
    opacity: 0.7;
    transform: translateY(-1px);
}

.content-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.05);
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destinations {
    padding: 6rem 2rem;
    background: #F5F3F0;
}

.destinations h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #8B4513;
}

.destination-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8B4513;
}

.card-content p {
    color: #666;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

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

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

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-text h2 {
        font-size: 2rem;
    }

    .content-section {
        padding: 4rem 1rem;
    }

    .destinations {
        padding: 4rem 1rem;
    }

    .destination-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .content-text h2 {
        font-size: 1.8rem;
    }

    .destinations h2 {
        font-size: 2.2rem;
    }
}