body.home-page {
    background:
        linear-gradient(rgba(247, 243, 236, 0.55), rgba(247, 243, 236, 0.55)),
        url('../img/forest-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-section {
    background: rgba(241, 235, 226, 0.82);
    padding: 110px 20px 95px;
    text-align: center;
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
}

.hero-kicker {
    margin-bottom: 14px;
    color: #7C8F6A;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-section h1 {
    margin-bottom: 22px;
    color: #5B4A3F;
    font-size: 5.8rem;
    font-weight: 500;
    line-height: 1.15;
}

.hero-text {
    max-width: 760px;
    margin: 0 auto 32px;
    color: #6B625C;
    font-size: 2.2rem;
    line-height: 1.7;
}

.hero-button {
    background-color: #7C8F6A;
    border-color: #7C8F6A;
    color: #FFFDF9;
    border-radius: 8px;
    padding: 0 28px;
    box-shadow: 0 4px 12px rgba(91, 74, 63, 0.08);
}

.hero-button:hover,
.hero-button:focus {
    background-color: #667557;
    border-color: #667557;
    color: #FFFDF9;
}

.home-section {
    padding: 75px 20px;
}

.section-content {
    max-width: 1100px;
    margin: 0 auto;
}

.support-section {
    background: rgba(248, 244, 238, 0.88);
    text-align: center;
}

.support-section h2,
.testimonial-section h2,
.cta-section h2 {
    color: #5B4A3F;
    margin-bottom: 14px;
}

.section-lead {
    max-width: 760px;
    margin: 0 auto 34px;
    color: #6B625C;
    font-size: 1.9rem;
    line-height: 1.7;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 25px;
}

.support-card {
    background: rgba(255, 253, 249, 0.96);
    border: 1px solid #E3D6C7;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: left;
    box-shadow: 0 5px 14px rgba(91, 74, 63, 0.08);
}

.support-card h3 {
    margin-bottom: 12px;
    color: #5B4A3F;
    font-size: 2.1rem;
}

.support-card p {
    margin-bottom: 0;
    color: #6B625C;
    line-height: 1.7;
}

.testimonial-section {
    background: rgba(237, 228, 214, 0.90);
    text-align: center;
}

.testimonial-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

.testimonial-track {
    max-width: 760px;
    width: 100%;
    min-height: 220px;
    position: relative;
}

.testimonial-slide {
    display: none;
    background: rgba(255, 253, 249, 0.96);
    border: 1px solid #E3D6C7;
    border-radius: 14px;
    padding: 40px 32px;
    box-shadow: 0 5px 14px rgba(91, 74, 63, 0.08);
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide blockquote {
    margin: 0 0 18px;
    padding: 0;
    border: none;
    color: #5B4A3F;
    font-size: 2.4rem;
    line-height: 1.7;
}

.testimonial-author {
    margin-bottom: 0;
    color: #7A6A5C;
    font-weight: 600;
}

.carousel-btn {
    background: #7C8F6A;
    border: none;
    color: #FFFDF9;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
    padding: 0;
}

.carousel-btn:hover,
.carousel-btn:focus {
    background: #667557;
}

.carousel-dots {
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    border-radius: 50%;
    background: #C7B7A5;
    cursor: pointer;
}

.dot.active {
    background: #7C8F6A;
}

.cta-section {
    background: rgba(248, 244, 238, 0.88);
}

.cta-content {
    text-align: center;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 24px;
    color: #6B625C;
    font-size: 1.9rem;
    line-height: 1.7;
}

@media screen and (max-width: 900px) {
    .support-cards {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 90px 20px 75px;
    }

    .hero-section h1 {
        font-size: 4.2rem;
    }

    .hero-text {
        font-size: 1.9rem;
    }

    .testimonial-carousel {
        flex-direction: column;
    }

    .testimonial-slide blockquote {
        font-size: 2rem;
    }
}

@media screen and (max-width: 640px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }

    .hero-text,
    .section-lead,
    .cta-content p {
        font-size: 1.7rem;
    }

    .support-card,
    .testimonial-slide {
        text-align: center;
    }
}
