.faq_title {
    font-weight: 600;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: 0;
    width: 79%;

}

.faq_subtitle {
    font-size: 16px;
    line-height: 26px;
    margin: 1.4rem 0;
    letter-spacing: 0;

}

.cont_us_btn {
    background-color: var(--color-light-blue);
    color: #FAFAFA;
    border: none;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
    width: 25%;
    transition: all 0.3s ease; /* smooth animation */
}

.cont_us_btn:hover {
      background-color: #fafafa;
  color: var(--color-light-blue);
    transform: scale(1.05) translateY(-3px); /* scale + slide up */
}

.faq-container {
    /* background: #fff; */
    border-radius: 8px;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
}

.faq-item {
    border: 1px solid #e0e0e0;

    border-radius: 6px;
    overflow: hidden;
}

.faq-button {
    color: #3A4252;

    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.5px;


    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    outline: none;
}

.faq-button.active {
    background: #F5F5F6;
}

.faq-answer {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;

    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    color: var(--color-text-accent);

    /* smoother transition */
    transition: max-height 0.5s ease, padding 0.3s ease;
}

/* .faq-accordion div:nth-of-type(1) {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px
}
.faq-accordion div:last-child {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px
} */
.faq-answer.open {
    padding: 0 15px 15px;
      background: #F5F5F6;
}
.fa-chevron-down,.fa-chevron-up{
    font-size: 16px;
}
/* Responsive */
@media (max-width: 767px) {
    .fa-chevron-down,.fa-chevron-up{
    font-size: 12px;
}
    .faq-button {
        font-size: 20px;
        line-height: 32px;
        letter-spacing: .5px;
        padding: 12px;
    }

    .faq_title {
        font-weight: 500;
        font-size: 32px;
        line-height: 38px;
        letter-spacing: 0;

    }

    .faq_subtitle {
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0;

    }

    .cont_us_btn {
        font-weight: 600;
        font-size: 16px;
        line-height: 22.65px;
        letter-spacing: -0.22px;
        vertical-align: middle;



        border-radius: 6px;
        padding: 12px;
        cursor: pointer;
        margin-bottom: 20px;
        width: 35%;
    }
}