.faq-accordion-wrapper-355e2009 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-355e2009 {
    background-color: #eef7fc;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.faq-item-355e2009.is-active {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-item-inner-355e2009 {
    padding: 24px;
}

.faq-header-355e2009 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-question-355e2009 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1e293b;
    transition: color 0.3s ease;
}

/* Custom Plus/Minus Circles */
.faq-icon-circle-355e2009 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #004d40;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.faq-icon-circle-355e2009::before,
.faq-icon-circle-355e2009::after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Horizontal line */
.faq-icon-circle-355e2009::before {
    width: 14px;
    height: 2px;
    top: 17px;
    left: 11px;
}

/* Vertical line */
.faq-icon-circle-355e2009::after {
    width: 2px;
    height: 14px;
    top: 11px;
    left: 17px;
}

/* Active State Icons */
.faq-item-355e2009.is-active .faq-icon-circle-355e2009 {
    background-color: #00bfa5;
}

/* Hide vertical line on active (becomes minus) */
.faq-item-355e2009.is-active .faq-icon-circle-355e2009::after {
    transform: scale(0);
}

.faq-content-355e2009 {
    display: none;
    margin-top: 16px;
}

.faq-answer-355e2009 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}

/* Responsive adjustment */
@media (max-width: 767px) {
    .faq-item-inner-355e2009 {
        padding: 20px;
    }
    .faq-question-355e2009 {
        font-size: 1rem;
    }
    .faq-icon-circle-355e2009 {
        width: 32px;
        height: 32px;
    }
    .faq-icon-circle-355e2009::before {
        width: 12px;
        left: 10px;
        top: 15px;
    }
    .faq-icon-circle-355e2009::after {
        height: 12px;
        top: 10px;
        left: 15px;
    }
}
