.faq-container {
    width: 100%;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question-text {
    flex-grow: 1;
}

/* Left Icon Styling */
.faq-left-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 16px;
    width: 1em;
    height: 1em;
}

.faq-left-icon i {
    width: 1em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Toggle Icon */
.faq-question:after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    display: none;
    padding: 0 15px 15px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); -webkit-transform: translateY(-10px); -moz-transform: translateY(-10px); -ms-transform: translateY(-10px); -o-transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 767px) {
    .faq-question {
        padding: 12px;
    }
    .faq-question:after {
        right: 12px;
    }
    .faq-left-icon {
        margin-right: 8px;
    }
}