/*support section*/

.support-section {
    background: url('../img/bg-support.png') no-repeat center center;
    background-size: cover;
    position: relative;
    height: 500px; /* Adjust as needed */
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Black color overlay */
    backdrop-filter: blur(8px); /* Blur effect */
}

.support-content {
    position: relative;
    text-align: center;
    padding-top: 100px; /* Adjust as needed */
    color: white;
}

.support-content h1 {
    font-size: 2.5em; /* Adjust as needed */
    margin-bottom: 20px;
}

.support-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.email-input {
    padding: 10px;
    width: 300px; /* Adjust as needed */
    margin-bottom: 20px;
}

.support-button {
    background-color: #17a2b8; /* Example button color */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .support-content h1 {
        font-size: 1.5em;
    }

    .email-input {
        width: 80%;
    }
}


/*faqs*/

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;

}
.faq-container h2{
    color: white;
}

.faq-question {
    background: #f2f2f2;
    margin-bottom: 10px;
    border-radius: 5px;
}

.faq-question-button {
    background: none;
    border: none;
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    font-size: 1.2em;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    text-align: left;
}

@media (max-width: 768px) {
    .faq-question-button {
        font-size: 1em;
    }
}

