/* FAQ Section */
.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 1rem 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.faq-question {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    cursor: pointer;
    color: white;
    font-weight: 600;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    display: none;
}

.faq-answer.show {
    display: block;
}