.faq-container {
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background: #f9fafb;
}

.faq-question {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.faq-question strong {
    color: #1f2937;
}

.faq-toggle-icon {
    color: #2563eb;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 24px 18px 24px;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}