.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
}

.faq-item {
    margin-bottom: 10px;
    background: #444;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #444;
    color: #fff;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    color: #0f3d3d;
    padding: 0 20px;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 15px 0;
}

@media (max-width: 768px) {
    .faq-section {
        max-width: 350px;
        margin: 0 auto;
    }
}