@import url(./style.css);
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-question {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-card.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
}

.faq-toggle-icon {
    font-size: 20px;
    color: var(--primary-color);
}
