.faq-container {
    max-width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.faq-item {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {

    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.faq-question button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 10px;
    background-color: #fff;
}

.faq-answer p {
    margin: 10px 0;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content length */
    padding: 10px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}
