/* FAQ Container */
.custom-faq {
    margin: 20px 0;
}

/* Judul FAQ */
.faq-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #176599;
}

/* Setiap item FAQ */
.faq-item {
    background: #FFFFFF;
    border: 1px solid #54595F;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: background 0.3s ease;
}

/* Hover effect */
.faq-item:hover {
    background: #DDEDFC;
}

/* Pertanyaan */
.faq-question {
    font-size: 1.2em;
    font-weight: bold;
    color: #176599;
    cursor: pointer;
    padding: 12px 16px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ikon plus/minus */
.faq-icon {
    font-size: 1.3em;
    font-weight: bold;
    color: #176599;
    transition: transform 0.3s ease;
}

/* Aktif (saat terbuka) */
.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

/* Jawaban */
.faq-answer {
    font-size: 1.1em;
    color: #2C2C41;
    line-height: 1.6;
    padding: 0 16px 12px 16px;
    display: none;
}
