.faq-section {
    padding: 40px 20px;
    background: #fff;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 0;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #1a1a1a;
}

.faq-answer {
    display: none;
    padding-bottom: 16px;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Dark Mode */
body.dark-mode .faq-section {
    background: #000 !important;
}

body.dark-mode .faq-question {
    color: #fff !important;
}

body.dark-mode .faq-answer {
    color: #ccc !important;
}

body.dark-mode .faq-item {
    border-color: #333 !important;
}