
.faq-section {
    width: 100%;
    max-width: 1500px;
    margin: 25px auto;
    padding: 0 4px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.faq-title {
    font-size: 16px;
    font-weight: bold;
    color: #00aeff;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-card {
    background: #ffffff;
    border: 1px solid #00aeff;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.faq-card:hover {
    background: #f4faf4;
    border-color: #00aeff;
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.faq-question {
    font-size: 13px;
    font-weight: 700;
    color: #274719;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.4;
}
.faq-icon {
    font-size: 18px;
    font-weight: bold;
    color: #00aeff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}
.faq-answer {
    font-size: 12px;
    line-height: 1.6;
    color: #444444;
    max-height: 0; /* Mengunci tinggi default agar tertutup */
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.3s ease;
}

/* State Aktif Saat Kolom Terbuka */
.faq-card.active {
    border-color: #00aeff;
    background: #f9fbf9;
}
.faq-card.active .faq-icon {
    transform: rotate(45deg); /* Mengubah tanda + menjadi x miring */
    color: #274719;
}
.faq-card.active .faq-answer {
    margin-top: 10px;
}

/* Responsif Layar HP/Mobile */
@media (max-width: 768px) {
    .faq-section { padding: 0 10px; }
    .faq-title { font-size: 14px; }
    .faq-question { font-size: 12px; }
    .faq-answer { font-size: 11px; }
}
