.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    background-color: #1eae3c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #fff;
}

.faq-question:hover {
    background: #24ce49;
}

.faq-answer {
    padding: 15px;
    background-color: #fff;
    display: none;
    border: 2px solid #188b30;
}

.faq-toggle-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-question.open .faq-toggle-icon {
    transform: rotate(45deg);
}