#faqSection {
    padding: 50px 20px;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

#faqSection h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 200;
    color: white;
    text-shadow: 1px 1px 3px black;
}

.faq-item {
    margin-bottom: 30px;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: orange;
    font-weight: 200;
    text-shadow: 1px 1px 3px gray;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #ddd;
}

@media (max-width: 950px) {
    .faq-item h3 {
        text-shadow: 1px 1px 3px black;
    }
}