.faq-banner-image {
    /* background-image: url(./assets/img/banner/banner-img-2.png);
    height: 80vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
    background-color: #232122;
    margin-top: -20px;
    height: auto;
    padding: 50px;
}

/* .contact-banner-image-overlay{
    background-color: rgba(0, 0, 0, 0.534);
    height: 80vh;
} */


.faq-heading {
    text-align: center;
    text-shadow: 0 0 5px #fd8623, 0 0 15px #fd8623, 0 0 20px #fd8623, 0 0 40px #fd8623, 0 0 60px #232122, 0 0 10px #ff8d00, 0 0 98px #232122;
    color: #232122;
    font-size: 60px;
}

.faq-container {
    background-color: #fff;
    border-radius: 10px;
    border-bottom: 4px solid #fd8623;
    border-top: 4px solid #fd8623;
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 4px solid #fd8623;
    background-color: #f1f1f1;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #fd8623;  
    transform: scale(1.02);
    color: #fff !important;
}

.faq-question {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.faq-answer {
    color: #000;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .faq-container {
        padding: 15px;
    }

    .faq-item {
        padding: 12px;
    }
}