.product-faq-section {
    padding: 64px 0;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    border: 1px solid #EEEAF7;
    border-left: none;
    border-right: none;

    .faq-title {
        text-align: center;
        font-size: 28px;
        color: #002750;
        font-weight: 700;
        max-width: 906px;
        margin: 0 auto 40px;
    }

    .faq-item {
        margin-bottom: 10px;
        overflow: hidden;
        max-width: 906px;
        margin: 0 auto;

        &.active {
            .faq-item-title::after {
                transform: rotate(-90deg);
            }

            .faq-item-content {
                display: block;
                font-size: 16px;
            }
        }

        .faq-item-title {
            padding: 8px 12px;
            cursor: pointer;
            font-size: 24px;
            font-weight: 700;
            color: #002750;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
            border-radius: 8px;
            background: #f4f7f9;
            margin-bottom: 16px;

            &::after {
                content: "";
                background: url("../images/svg/chevron.svg");
                width: 24px;
                height: 24px;
                transform: rotate(90deg);
                font-size: 12px;
                transition: transform 0.3s ease;
            }

            &:hover {
                background: darken(#f4f7f9, 3%);
            }
        }

        .faq-item-content {
            padding: 0 20px 20px 5px;
            color: #002750;
            line-height: 1.6;
            display: none;
        }
    }
}

@media (max-width: 768px) {
    .product-faq-section {
        padding: 32px 0;

        .faq-title {
            text-align: start;
        }
    }
}
