.product-faq-block {
    padding: 30px 0;
}
.product-faq-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2c3e3a;
    margin: 0 0 20px;
}
.product-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.product-faq-item:hover {
    border-color: #ccc;
}
.product-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    text-align: left;
    gap: 15px;
}
.product-faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #999;
}
.product-faq-item.open .product-faq-chevron {
    transform: rotate(180deg);
}
.product-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.product-faq-item.open .product-faq-answer {
    max-height: 500px;
}
.product-faq-answer-inner {
    padding: 0 25px 20px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}


#module-productfaq-faq .page-header{
    background: #ECF166;
    text-align: center;
    padding: 20px 10px;
    border-radius: 34px;

}

#module-productfaq-faq .page-header h1{
    margin: 0px !important;
}


#module-productfaq-faq .dp-rbanner{
    margin-top: 40px;
}



@media (max-width: 768px) {

    #module-productfaq-faq .page-header h1{
       font-size: 18px !important;
    }
    

}