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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c1810;
    background: linear-gradient(135deg, #f7f3f0 0%, #e8ddd4 100%);
    overflow-x: hidden;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #c4661f;
    text-align: center;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(196, 102, 31, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #c4661f, #8b4513);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #5a4a3a;
    line-height: 1.8;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

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

/* Organic Shapes */
.organic-shape {
    position: absolute;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 50% 30% 70% 40%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.shape-2 {
    width: 150px;
    height: 200px;
    bottom: 30%;
    right: 15%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-alt {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #c4661f;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c4661f, #8b4513);
    border-radius: 2px;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

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

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #c4661f;
}

.card-content p {
    color: #5a4a3a;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Resources Section */
.resources {
    background: linear-gradient(135deg, rgba(196, 102, 31, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.resource-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(196, 102, 31, 0.2);
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.resource-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #c4661f;
}

.resource-item a {
    color: #8b4513;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.resource-item a:hover {
    border-bottom-color: #c4661f;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    border-left: 4px solid #c4661f;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(196, 102, 31, 0.3);
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: #5a4a3a;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: #c4661f;
}

/* Studies Section */
.studies {
    background: rgba(255, 255, 255, 0.4);
}

.study-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(196, 102, 31, 0.2);
}

.study-item h3 {
    color: #c4661f;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(45deg, #c4661f, #8b4513);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 30px;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .hero-image {
        transform: rotate(0deg);
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2.2rem;
    }

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

    .organic-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    section {
        padding: 60px 0;
    }

    .logo {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }
}