.faq-blog {
    color: var(--white);
    margin-top: var(--space-lg);
}

.faq-blog-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: start;
}

.faq-title {
    text-align: center;
    margin: 10px 0;
    font-size: 25px;
    position: relative;
    padding-bottom: 20px;
}

.faq-title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    border-radius: 25px;
    bottom: -10%;
    left: 0;
    background-image: linear-gradient(90deg, var(--white) 0%, var(--white) 100%);

}

.faq-item {

    background-color: var(--helperColor);
    padding: 14px 18px;
    transition: all 0.8s ease-in-out;
    /* ============================ */
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: start;
    border-radius: 5px;
    border: 1px solid var(--white);
    box-shadow: var(--shadow-lg);
    width: 90%;
    margin: 0px auto;
}



.faq-item summary {
    font-size: 17px;
    cursor: pointer;
    list-style: none;
    outline: none;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.8s ease-in-out;
    font-weight: 700;
}


.faq-item summary::before {
    font-family: "Font Awesome 6 Free";
    content: "\f078";
    font-size: 13px;
    display: inline-block;
    transition: transform 0.35s ease, opacity 0.2s ease;
}

.faq-item-en summary::before {
    font-family: "Font Awesome 6 Free";
    content: "\f078";
    font-size: 13px;
    display: inline-block;
    transition: transform 0.35s ease, opacity 0.2s ease;
}

.faq-item[open] summary::before {
    transform: rotate(180deg) scale(1.1);
}

.faq-content {
    max-height: 0;
    opacity: 0;
    transform: translateY(-5px);
    overflow: hidden;
    padding: 0px 30px;
    transition:
        max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        transform 0.3s ease;

}

.faq-item[open] .faq-content {
    opacity: 1;
    transform: translateY(10px);
}

.faq-content ul {
    margin: 8px 0;
}

/* responsive tweaks */
@media (max-width:1440px) {
    .faq-blog {
        width: 98%;
    }
}

@media (max-width: 920px) {
    .faq-blog .row {
        flex-direction: column;
    }

    .faq-blog .row .col {
        width: 100%;
    }

    .faq-item {
        padding: 12px 14px;
        width: 90%;

    }
}

@media (max-width:600px) {
    .faq-title {
        font-size: 22px
    }

    .faq-item {
        padding: 12px 14px;
        width: 90%;
    }
}