.faq-body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    padding: 20px;
}

.faq-container {
    width: 100%;
    margin: auto;
}

.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 {
    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 {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 15px;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 250px; /* Adjust as needed */
    opacity: 1;
}