.faq-section {
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #eaf5ff00;
    padding: 10px;
}

.faq-question {
    cursor: pointer;
    font-weight: bold;
    background-color: #1684eb; /* Warna biru */
    color: white;
    padding: 15px 40px 15px 20px;;
    border: none;
    text-align: left;
    outline: none;
    width: 100%;
    font-size: 18px;
    border-radius: 10px;
    margin-bottom: 5px;
    position: relative;
}

.faq-question::after {
    content: '\25BC'; /* Panah menghadap ke bawah */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(180deg); /* Panah menghadap ke atas saat aktif */
}

.faq-answer {
    display: none;
    background-color: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #1684eb;
    margin-top: 5px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.faq-question.active + .faq-answer {
    display: block;
}
