.faq-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #0A1624 0%, #0E2238 100%);
    border-radius: 16px;
}

.faq-section h1 {
    font-size: 2rem;
    color: var(--rm-gold-soft, #D8B66A);
    margin-bottom: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--rm-gold-soft, #D8B66A);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--rm-ivory, #F6F7F9);
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.faq-item h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--rm-ivory, #F6F7F9);
}

.faq-item h3 {
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
}

.faq-item ul {
    padding-left: 1.2rem;
    list-style-type: disc;
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section h1 { font-size: 1.8rem; }
    .faq-item h2 { font-size: 1.1rem; }
    .faq-item h3 { font-size: 0.95rem; }
    .faq-item p, .faq-item ul { font-size: 0.95rem; }
}