/* ===============================
   FAQ HOME
================================ */

.faq-home {
    padding: 70px 20px;
    background: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* ===============================
   FAQ ITEM
================================ */

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 18px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: #059669;
    cursor: pointer;
    text-align: left;
    padding: 0;
}

.faq-icon {
    width: 26px;
    height: 26px;
    border: 2px solid #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: 0.2s ease;
}

/* ===============================
   ANSWER
================================ */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    margin-top: 14px;
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
}

/* ===============================
   ACTIVE STATE
================================ */

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    content: '-';
    transform: rotate(180deg);
}

/* ===============================
   MORE BUTTON
================================ */

.faq-more {
    margin-top: 40px;
    text-align: center;
}
