/* FAQ Toggle Styles */
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ff9900;
}

.faq-answer {
    display: none;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    margin-top: 5px;
    animation: fadeIn 0.3s ease-in-out;
}

.faq-answer.active {
    display: block;
}

.toggle-icon {
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}