.faq-blog {
    background-color: var(--white);
    padding: 35px 0;
    position: relative;
    color: var(--secondaryColor);

}


.faq-blog svg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 20px;
    width: 100%;

}
.center{
    text-align: center;
}
.faq-title {
    text-align: center;
    margin: 10px auto;
    font-size: 25px;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;


}

.faq-title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    border-radius: 25px;
    bottom: -10%;
    left: 0;
    background-image: linear-gradient(90deg, var(--secondaryColor) 0%, var(--secondaryColor) 100%);

}


.faq-blog .row {
    display: flex;
    justify-content: space-between;
}

.faq-blog .row .col {
    width: 48%;
    transition: all 0.8s ease-in-out;
}




.faq-item {
    border-bottom: 1px solid var(--secondaryColor);
    padding: 14px 18px;
    transition: all 0.8s ease-in-out;
}

.faq-item summary {
    font-size: 17px;
    cursor: pointer;
    list-style: none;
    outline: none;
    user-select: none;
    display: flex;
    align-items: start;
    gap: 10px;
    transition: all 0.8s ease-in-out;
    font-weight: 700;
}

/* .faq-item[open] summary {
    font-size: 20px;

} */

/* سهم */
.faq-item summary::before {
    content: "▸";
    font-size: 30px;
    transform: rotate(-67deg);
    transition: transform .8s ease;
}

.faq-item[open] summary::before {
    transform: rotate(90deg)
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, padding 0.6s ease;
    padding: 0 6px;
    /* padding صغير بالبداية */
}

.faq-item.open .faq-content {
    padding: 10px 6px 4px 6px;
    /* يظهر padding بالكامل عند الفتح */
}


.faq-content ul {

    margin: 8px 0;
}

/* responsive tweaks */
@media (max-width: 920px) {
    .faq-blog .row {
        flex-direction: column;
    }

    .faq-blog .row .col {
        width: 100%;
    }
}

@media (max-width:600px) {
    .faq-title {
        font-size: 22px
    }

    .faq-item {
        padding: 12px 14px
    }
}