.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #323232;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.faq-card {
    border: 1px solid #4b4b4b;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.faq-question {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    font-size: 14px;
    display: none;
    margin-top: 10px;
    text-align: left;
}

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

.section-background {
    background-image: url('../assets/images/faq-background.png');
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 768px) {
    .how-it-works-card {
        width: 100%;
        max-width: none;
    }

    .step-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .section-background {
        padding: 60px 0 60px 0;
    }
}