/* ===== FAQs SECTION STYLING ===== */
#faqs {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faqs-container {
    width: 100%;
    max-width: 800px;
    margin-top: 50px;
    text-align: left;
}

.faq-item {
    background-color: #1a1a1a;
    border: 1px solid #FF0000;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFFFFF;
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #2a2a2a;
}

.faq-toggle-icon {
    font-size: 1.5em;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    font-size: 1em;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}