html body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.heading {
    background-color: #471642;
    color: white;
    padding: 30px 0px;
}

.heading>h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}

.section2 {
    background-image: url('../images/contact.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: fit-content;
    padding: 40px;
}

h1 {
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: 700;
}

.textFields {
    background-color: white;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid white;
}

textarea {
    padding: 10px;
    border-radius: 10px;
}

.label {
    color: white;
    text-align: center;
    margin-bottom: 5px;
    margin-top: 30px;
}

.btnSubmit {
    background-color: #471642;
    color: white;
    border-radius: 30px;
    padding: 10px 50px;
    border: 1px solid #471642;
    margin-top: 30px;
}

.faqs {
    text-align: center;
    color: black;
    font-size: 30px;
    font-weight: 700;
    margin: 30px 0px;
}

.FAQsBody {
    background-color: white;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: fit-content;
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
}

.FAQsBody>h2 {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #471642;
}

.FAQsBody>p {
    color: black;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.section3 {
    margin-top: 50px;
    margin-bottom: 50px;
}
@media (max-width:449px){
    .section3{
        margin: 0px 10px 0px 10px;
    }
}