.product-faq-section {
    background: #f7fbfa;
    border-radius: 8px;
    clear: both;
    color: #333333;
    margin: 0 0 40px;
    padding: 30px 25px;
    
}

.product-faq-section .product-faq-title {
    color: #2ad8b6;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 16px;
}

.product-faq-section .faq-item {
    border-top: 1px solid rgba(51, 51, 51, 0.08);
}

.product-faq-section .faq-item:last-child {
    border-bottom: 1px solid rgba(51, 51, 51, 0.08);
}

.product-faq-section .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    color: #333333;
    text-transform: none;
}

.product-faq-section .faq-question::after {
    content: '+';
    align-items: center;
    border: 1px solid #2ad8b6;
    border-radius: 50%;
    color: #2ad8b6;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 400;
    height: 26px;
    justify-content: center;
    line-height: 1;
    margin-left: 18px;
    transition: background-color 0.2s ease, color 0.2s ease;
    width: 26px;
    text-transform: none;
}

.product-faq-section .faq-question[aria-expanded='true']::after {
    content: '-';
    background: #2ad8b6;
    color: #ffffff;
}

.product-faq-section .faq-answer {
    color: #333333;
    font-size: 15px;
    line-height: 1.6;
    padding: 0 42px 18px 0;
}

.product-faq-section .faq-answer p {
    margin: 0;
}

@media (min-width: 768px) {
    .product-faq-section {
        padding: 30px 40px;
    }
}
