/* FAQ Container */
.faq-body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    padding: 20px;
}

.faq-container {
    width: 100%;
    margin: auto;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    overflow: hidden;
    width: 100%;
}

/* FAQ Question */
.faq-question {
    cursor: pointer;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    background: #007BFF;
    color: white;
    border: none;
    width: 100%;
    text-align: left;
    outline: none;
    transition: background 0.3s ease-in-out;
}

.faq-question:hover {
    background: #0056b3;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}

/* Active FAQ */
.faq-item.activefaq .faq-answer {
    padding: 15px;
    opacity: 1;
	max-height: fit-content !important;
}