.faq-container {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    max-width: 100%;
    clear: both;
}

.faq-container h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
}

.faq-list {
    width: 100%;
}

.faq-item {
    margin-bottom: 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    overflow: hidden !important;
    background-color: #fff !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
}

.faq-title {
    position: relative !important;
    padding: 15px 20px !important;
    background-color: #f4f4f4 !important;
    color: #333 !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: background-color 0.3s ease !important;
}

.faq-title:hover {
    background-color: #e9e9e9 !important;
}

.faq-title.active {
    background-color: #e0e0e0 !important;
}

.faq-icon {
    font-size: 20px !important;
    font-weight: bold !important;
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    text-align: center !important;
    line-height: 18px !important;
}

.faq-content {
    display: none;
    padding: 15px 20px !important;
    background-color: #fff !important;
    border-top: 1px solid #e0e0e0 !important;
}

.faq-content p {
    margin: 0 !important;
    line-height: 1.6 !important;
}

/* Remove the forced display of the first FAQ item */
/* #faq-content-0 {
    display: block !important;
} */

/* #faq-title-0 .faq-icon {
    content: "-" !important;
} */