.faq-product-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: "Poppins", sans-serif;
}
.faq-product-container h2 {
    color: #121f3d;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #ffffff;
    border-radius: 28px;
    padding: 1.5rem;
    box-sizing: border-box;
    border: 1px solid #E2E8F0;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10196078431372549);    
}
.faq-content-accordion {
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #E2E8F0;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10196078431372549);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.faq-accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 18px 22px;
    font-size: 17px;
    font-weight: 500;
    color: #1d293d;
    cursor: pointer;
    background: #fff;
    border: none;
    outline: none;
    transition: background 0.3s ease, color 0.3s ease;
}
.faq-accordion-title:hover {
    background: #f8fff6;
}
.faq-accordion-title:focus {
    outline: none;
}
.faq-accordion-title i {
    font-size: 16px;
    color: #7c859c;
    transition: transform 0.3s ease, color 0.3s ease;
}
.faq-accordion-title.active {
    color: #009966;
    background: #f8fff6;
}
.faq-accordion-title.active i {
    transform: rotate(180deg);
    color: #009966;
}
.faq-accordion-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
    will-change: max-height, opacity;
}
.faq-answer {
    background: #fff;
    padding: 15px 22px;
    margin: 0;
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 15px;
    border-top: 1px solid #e6e8ef;
}
@media (prefers-reduced-motion: reduce) {
    .faq-accordion-answer {
        transition: none;
    }
    .faq-accordion-title i {
        transition: none;
    }
}