.f41-section {
    margin-bottom: 2.5rem;
}

.f41-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 2.2rem;
    color: #273c25;
}

.f41-section-title .bold {
    font-weight: 700;
    color: #56850c;
}

/* --- Why Us --- */
.f41-whyus-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.3rem 2.2rem;
    margin-top: 2rem;
}

.f41-whyus-item {
    width: 230px;
    text-align: center;
    color: #34491c;
}

.f41-whyus-item img {
    width: 62px;
    height: 62px;
    margin-bottom: 1.1rem;
}

.f41-whyus-item h4 {
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #56850c;
}

.f41-whyus-item p {
    font-size: 1.06rem;
    color: #333;
    line-height: 1.4;
}

/* --- Ingredients Section --- */
.f41-ingredients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.f41-ingredient-item {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    margin-bottom: 1.5rem;
}

.f41-ingredient-item img {
    width: 105px;
    height: 105px;
    object-fit: cover;
    border-radius: 50%;
    border: 3.5px solid #e3e3c7;
    background: #fff;
}

.f41-ingredient-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: #34491c;
    margin-bottom: 0.5rem;
}

.f41-ingredient-desc {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

/* --- FAQ Accordion --- */
.f41-faq-accordion {
    max-width: 100%;
    margin: 0 auto;
}

.f41-faq-item {
    border-bottom: 1.5px solid #e0e8cc;
    margin-bottom: 0.6rem;
}

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

.f41-faq-item.open .f41-faq-question {
    color: #222;
}

.f41-faq-answer {
    display: none;
    padding: 0.2rem 1.5rem 1.1rem 0.5rem;
    font-size: 1.06rem;
    color: #34491c;
}

.f41-faq-item.open .f41-faq-answer {
    display: block;
}

.f41-faq-question .faq-arrow {
    transition: transform 0.22s;
}

.f41-faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .f41-whyus-row {
        gap: 1.6rem 0.5rem;
    }

    .f41-whyus-item {
        width: 47vw;
        min-width: 190px;
    }

    .f41-ingredients-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .f41-section-title {
        font-size: 1.6rem;
    }

    .f41-whyus-item h4 {
        font-size: 1.12rem;
    }

    .f41-ingredient-title {
        font-size: 1.02rem;
    }

    .f41-ingredient-item img {
        width: 75px;
        height: 75px;
    }
}