.faq-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.faq-main-title {
    color: #0d2240;
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #F7F4F0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: background-color 0.2s ease;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    color: #0d2240;
    margin: 0;
    font-size: 18px;
}

.faq-icon {
    font-size: 20px;
    font-weight: bold;
    color: #0d2240;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    color: #444;
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Active state toggled via JS */
.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust if answers are longer */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}