.faq-item {
    margin-bottom: 10px;
    
}

.faq-question {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.6s ease, transform 0.6s ease, color 0.6s ease;
    border-radius: 12px;
    background-color: #1b1b1b;
}

.faq-question:hover {
    background: #ffffff;
    color: black;
    transform: translateX(1%);
}

.faq-question::after {
    content: '▼';
    font-size: 0.9em;
    color: #888;
    transition: transform 0.6s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: black;
    background-color: #eeeeee;
    padding: 0 20px;
    font-size: 1.2rem;
    margin-left: 3.5%;
    margin-right: 5%;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-radius: 0 0 12px 12px;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
}

@media (max-width: 600px) {
    .faq-container {
        padding: 20px;
    }
    
    .faq-question {
        padding: 12px 15px;
    }
}