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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #492e21;
    overflow-x: hidden;
    background-color: #c6b4a1;
    padding: 10px 10px;
}

h1, h2, h3 {
    font-family: 'Playfair Display';
}


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

/* Navbar */
.navbar {
    position: sticky;
    
    top: 0;
    width: 100%;
    background: #f4ead2cc;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 04rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #492e21;
    font-family: 'Playfair Display', serif;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #492e21;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #492e21;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #492e21;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav {
    background: #492e21 !important;
    color: #c6b4a1 !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
}

.btn-nav:hover {
    background: #3a2419 !important;
    transform: scale(1.05) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #492e21;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #c6b4a1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn.primary {
    background: #492e21;
    color: #c6b4a1;
    box-shadow: 0 4px 15px rgba(73, 46, 33, 0.3);
}

.btn.primary:hover {
    background: #3a2419;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(73, 46, 33, 0.4);
}
.btn.secondary-2 {
    background: transparent;
    color: #fbfbfb;
    border: 2px solid #af8b52;
}

.btn.secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn.secondary:hover {
    background: #c6b4a1;
    color: #492e21;
    transform: translateY(-3px);
}

.btn.large {
    padding: 18px 36px;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.slider-nav button {
    background: rgba(201, 180, 161, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #492e21;
    font-size: 1.2rem;
}

.slider-nav button:hover {
    background: #c6b4a1;
    transform: scale(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    right: 20px;
    text-align: center;
    color: #c6b4a1;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.scroll-arrow {
    font-size: 1.5rem;
}

/* Story Section */
.story {
    display: flex;
    position: relative;
    padding: 6rem 0;
    background: #c6b4a1;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.consulting-intro {
    padding: 2rem 2rem;
}
.consulting-cards {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 4rem;
    align-items: center;
    padding: 2rem 2rem;
}
.consulting-first {
    order: 1;
    
    position: relative;


}
.story-image img {
    width: 80%;
    height: 80%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.story-image img:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.story-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #492e21;
    position: relative;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #492e21;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #492e21;
}
.italic {
    font-style: italic;
    color: #000000;
}
/* is this for you? */
.is-it-for-you {
     


    
   
}
.container-for-you {
   
}

.is-it-for-you-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.is-it-for-you-text {
    flex: 1;
}

@media (min-width: 768px) {
    .is-it-for-you-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .story-image-home {
        flex-shrink: 0;
    }
}

.is-it-for-you p {
   margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #492e21;
}

/* What brings you here? */
.what-brings-you-here {
    background: #f8f5f2;
    padding: 6rem 0;
    text-align: center;
}
.what-brings-you-here p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #492e21;
}
/* Community Section */
.community-hero {
    
    object-fit: cover;
    width: 100%;
    position: relative;
    overflow: hidden;

}
.community-hero img {
    opacity: 1;
}
.community-intro {
   
    
   padding: 2rem 2rem;
}
.community-intro h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #492e21;
}
.community-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #492e21;
}
.community {
    gap: 4rem;
    position: relative;
    padding: 6rem 0;
    background: #f8f5f2;
}

.community h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #492e21;
}

.community-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.community-phase1, .community-phase2, .community-phase3 {

    background: #3a2419;
    padding: 4rem 2rem;
    gap: 10rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    line-height: 2;
    position: relative;
    overflow: hidden;
    color: #c6b4a1;
    margin: 15px;
}
.community-phase1 h3, .community-phase2 h3, .community-phase3 h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d5c2c2;
}
.carousel-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c6b4a1;
}
    
 #carouselTrack::-webkit-scrollbar { display: none; }
.buttons {
    padding: 4rem 2rem;
    display: flex;
    gap: 1em;
    justify-content: center;
    flex-wrap: wrap;
}
.card-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.option-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #492e21, #c6b4a1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.option-card:hover::before {
    transform: scaleX(1);
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.option-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #492e21;
}

.option-card p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.option-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.option-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.option-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #492e21;
    font-weight: bold;
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background: #c6b4a1;
    text-align: center;
}

.video-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #492e21;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    width: 100%;
    height: 450px;
}

.video-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #492e21;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: #f8f5f2;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #492e21;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.testimonial {
    display: none;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial.active {
    display: block;
    opacity: 1;
}

.testimonial p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #492e21;
    line-height: 1.6;
}

.testimonial cite {
    font-weight: bold;
    color: #492e21;
    font-size: 1.1rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.testimonial-nav button {
    background: #492e21;
    color: #c6b4a1;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav button:hover {
    background: #3a2419;
    transform: scale(1.1);
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c6b4a1;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #492e21;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #492e21 0%, #3a2419 100%);
    color: #c6b4a1;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(198,180,161,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.cta .btn {
    background: #e0ceba;
    color: #9e887d;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}
/*notsure if this is for you */
.not-sure {
    background: #f8f5f2;
    padding: 6rem 0;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #492e21;
}
.not-sure p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #492e21;
}
.not-sure h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #492e21;
}
.not-sure a {
    color: #492e21;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.not-sure .btn {
    background: #492e21;
    color: #c6b4a1;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}
/* podcast photos */
.podcast-photo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.podcast-photo img {
    flex: 1 1 150px;
    max-width: 300px;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

/*podcast */
.podcast {
    display: flex;
    position: relative;
    padding: 6rem 0;
    background: #c6b4a1;
    
}
.podcast-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #492e21;
}
.podcast-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #492e21;
    position: relative;
}
/* Carousel Section */
.photos-carousel {
    padding: 4rem 2rem;
    background: #f8f5f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.carousel-track {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 20px;
    border-radius: 15px;
}

/* Hide scrollbar but keep scrolling */
.carousel-track::-webkit-scrollbar {
    height: 4px;
}

.carousel-track::-webkit-scrollbar-track {
    background: transparent;
}

.carousel-track::-webkit-scrollbar-thumb {
    background: #492e21;
    border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-thumb:hover {
    background: #3a2419;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 400px;
    height: 300px;
    scroll-snap-align: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(73, 46, 33, 0.9);
    color: #c6b4a1;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.carousel-btn:hover {
    background: #492e21;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c6b4a1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #492e21;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.carousel-dot.active {
    background: #492e21;
    transform: scale(1.3);
}

.carousel-dot:active {
    transform: scale(1.1);
}

.carousel-dot:hover {
    background: #9a8b7e;
}

/* Tablet Carousel Adjustments */
@media (max-width: 1024px) {
    .carousel-slide {
        width: 350px;
        height: 260px;
    }
}

/* Tablet/iPad Carousel Adjustments */
@media (max-width: 768px) {
    .photos-carousel {
        padding: 3rem 1.5rem;
    }

    .carousel-container {
        padding: 0;
    }

    .carousel-track {
        gap: 1.2rem;
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }

    .carousel-slide {
        width: 320px;
        height: 240px;
        border-radius: 12px;
    }

    .carousel-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    .carousel-dots {
        gap: 0.6rem;
        margin-top: 1.2rem;
    }

    .carousel-dot {
        width: 11px;
        height: 11px;
    }

    .carousel-dot.active {
        transform: scale(1.25);
    }
}

/* Small phone adjustments */
@media (max-width: 640px) {
    .photos-carousel {
        padding: 2.5rem 1rem;
    }

    .carousel-track {
        gap: 1rem;
        padding: 0.75rem 0;
        margin-bottom: 1.2rem;
    }

    .carousel-slide {
        width: 280px;
        height: 210px;
        border-radius: 12px;
    }

    .carousel-btn {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }

    .carousel-prev {
        left: 6px;
    }

    .carousel-next {
        right: 6px;
    }
}

/* Extra small phone adjustments */
@media (max-width: 480px) {
    .photos-carousel {
        padding: 2rem 0.75rem;
    }

    .carousel-track {
        gap: 0.8rem;
        padding: 0.5rem 0;
        margin-bottom: 1rem;
    }

    .carousel-slide {
        width: 260px;
        height: 195px;
        border-radius: 10px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .carousel-prev {
        left: 4px;
    }

    .carousel-next {
        right: 4px;
    }

    .carousel-dots {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-dot.active {
        transform: scale(1.2);
    }
}

/* Very small phone (320px) */
@media (max-width: 380px) {
    .photos-carousel {
        padding: 1.5rem 0.5rem;
    }

    .carousel-slide {
        width: 240px;
        height: 180px;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .carousel-dot {
        width: 9px;
        height: 9px;
    }
}

/* FAQ Accordion */
.faqs {
    padding: 6rem 0;
    background: #c6b4a1;
}

.faqs h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #492e21;
}

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

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.faq-item h3 {
    background: #492e21;
    color: #c6b4a1;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item h3:hover {
    background: #3a2419;
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    display: none;
}

/* Footer */
.footer {
    background: #492e21;
    color: #c6b4a1;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #c6b4a1;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #c6b4a1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #c6b4a1;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: white;
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #c6b4a1;
    padding-top: 2rem;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: #c6b4a1;
        flex-direction: column;
        gap: 1rem;
        padding: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    .nav-links.active {
        height: auto;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

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

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .story-content {
        grid-template-columns: 5fr;
        gap: 3rem;
    }

    .story-text h2 {
        font-size: 2.2rem;
    }

    .community-options {
        grid-template-columns: 1fr;
    }

    .video-wrapper iframe {
        height: 250px;
    }

    .testimonial p {
        font-size: 1rem;
    }

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

    .cta p {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
