/* ===== FAQ Pulse Section ===== */
.faq--pulse-section {
    background-color: #07130F;
    padding: 80px 0;
    color: #fff;
}

.faq--pulse-section .section--title {
    text-align: center;
    margin-bottom: 48px;
}

.faq--pulse-section .section--title h3 {
    font-size: 48px;
    font-weight: 400;
    color: #f6f6f6;
    margin: 0;
    line-height: 56px;
}

/* ===== Accordion Wrapper ===== */
.pulse-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.pulse-faq-list-main-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===== Single FAQ Item ===== */
.pulse-faq-accordion-lists {
    border-radius: 6px;
    background: #FFFFFF1A;
    border: 1px solid transparent;
    overflow: hidden;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.pulse-faq-accordion-lists.active {
    background-color: #FFFFFF1A;
}

/* ===== Question Row ===== */
.pulse-faq-accordion-lists-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.pulse-faq-accordion-lists-question h4 {
    font-size: 28px;
    font-weight: 400;
    color: #f6f6f6;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

/* ===== Icon ===== */
.accordion-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-icon-component {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}

.accordion-icon_vertical-line img {
    width: 100%;
    height: 100%;
    display: block;
    transform: rotate(180deg);
    filter: brightness(0) invert(1); /* keeps SVG white on dark bg */
}

.pulse-faq-accordion-lists.active .accordion-icon-component {
    transform: rotate(-180deg);
}

/* ===== Answer Panel ===== */
.pulse-faq-answer-list {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.pulse-faq-answer-sub-box {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.6;
    color: #b8b8b8;
}

.pulse-faq-answer-sub-box p {
    margin: 0 0 12px;
    color: #f6f6f6;
}

.pulse-faq-answer-sub-box p a{
    color:var(--secondary-color);
}

.pulse-faq-answer-sub-box p:last-child {
    margin-bottom: 0;
}

.pulse-faq-answer-sub-box a {
    color: #3f8cff;
    text-decoration: none;
}

.pulse-faq-answer-sub-box a:hover {
    text-decoration: underline;
}


.pulse-faq-answer-sub-box ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.pulse-faq-answer-sub-box ul li {
    font-size: 18px;
    color: #f6f6f6;
    list-style: disc;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .faq--pulse-section {
        padding: 56px 0;
    }

    .faq--pulse-section .section--title h3 {
        font-size: 28px;
    }

    .pulse-faq-accordion-lists-question {
        padding: 16px 18px;
    }

    .pulse-faq-accordion-lists-question h4 {
        font-size: 15px;
    }

    .pulse-faq-answer-sub-box {
        padding: 0 18px 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq--pulse-section .section--title h3 {
        font-size: 24px;
    }
}

@media(max-width:1100px) and (min-width:996px){
    .faq--pulse-section .section--title h3 {
        font-size: 28px;
    }

    .pulse-faq-accordion-lists-question h4 {
        font-size: 18px;
    }

    .pulse-faq-answer-sub-box p {
        font-size: 14px;
        line-height: 20px;
    }
}