.faq-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.faq-container {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    font-weight: 600;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question .faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #374151;
}

.faq-question.active + .faq-answer {
    display: block;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}
