/* FAQ Overall */
.product-faq {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto;
    font-family: Arial, Helvetica, sans-serif;
}

/* FAQ Item */
.faq-item {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

/* Question */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #2f5f78;
    transition: all 0.3s ease;
}

/* Hover Effect */
.faq-question:hover {
    background: #f7f9fb;
}

/* Question Title */
.faq-title {
    flex: 1;
}

/* Plus Icon */
.faq-icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    color: #2f5f78;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    display: none;
    padding: 0 25px 25px;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

/* Paragraph */
.faq-answer p {
    margin: 0;
}

/* Active FAQ */
.faq-item.active .faq-answer {
    display: block;
}

/* Change + to × */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 768px) {

    .product-faq {
        margin: 20px auto;
    }

    .faq-question {
        padding: 16px;
        font-size: 16px;
        gap: 15px;
    }

    .faq-answer {
        padding: 0 16px 20px;
        font-size: 14px;
        line-height: 1.7;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 22px;
    }

}