/* FAQ Question */
.faq-title{
    color: var(--primary-color);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    text-align: left;
    padding: 15px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease-in-out;
}

.faq-question:hover {
    background:#c883d464 ;
}

/* Icon */
.icon {
    font-size: 22px;
    font-weight: bold;
}

/* FAQ Answer */
.faq-answer {
    display: none;
    padding: 15px;
    font-size: 16px;
    color: #555;
    animation: fadeIn 0.3s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .faq-container {
        width: 95%;
    }
}
