.faq-section {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.faq-question {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7f7f7;
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
}

.faq-icon {
    font-size: 20px;
    font-weight: bold;
}

.faq-answer {
    padding: 0 15px;
    display: block;
    border-top: 1px solid #ddd;
    line-height: 1.4;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust as needed */
    padding: 15px;
    transition: 0.3s ease;
}

.faq-icon {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease-out;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer p {
    margin: 5px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}
