section {
    padding: 0 2rem;
    width: 100%;
    margin-bottom: 5rem;
}

.headerNew a {
    color: white;
}

.intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(/images/websiteV3/home/whyImg.jpg);
    padding-top: 12rem;
    background-size: 800px 800px;
    background-repeat: no-repeat;
    background-position: center;
    height: 50rem;
    position: relative;
    color: white;
}

.intro::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 50rem;
    z-index: 1;
    pointer-events: none;
}

.introTxt {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 6rem;
}

.txtBg {
    background-color: #984CFF;
    padding: 8px;
    margin: 1.5rem 0;
}

.benfit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benfit img {
    width: 4rem;
    height: 2.5rem;
}

.purplebtn {
    align-self: center;
    background-color: #984CFF;
    border-radius: 3rem;
    color: white;
    width: auto;
    padding: 0 3rem;
    margin-top: 1rem;
}

.aboutDataCont {
    display: flex;
    justify-content: space-around;
    width: 100%;
    flex-direction: column;
}

.aboutData {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 20px 0px rgba(152, 76, 255, 0.19);

}

.abouDataIcon {
    background-color: white;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.aboutData a{
    color: black;
}

.abouDataIcon i {
    font-size: 25px;
    color: rgba(83, 0, 188, 1);
}
.formCont img{
    display: none;
}

.faq {
    border-radius: 20px;
    width: 100%;

}
.faq h2{
    text-align: center;
    margin-bottom: 2rem;
}

.faq-container {
    width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 10px 20px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 0;
}

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

.faq-arrow {
    transition: transform 0.3s ease;
}

.faq-arrow i {
    font-size: 25px;

}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 10px 0;
}

.faq-answer ul {
    list-style-type: disc;
}

.formCont {
    display: flex;
    align-items: center;
    height: 30rem;
}

.form {
    width: unset;
}

.input,
textarea {
    background: transparent;
    border: 0.5px solid rgba(0, 0, 0, 0.5) !important;
    border-radius: 50px;
}

#contactBtn {
    text-align: center;
    background-color: rgba(83, 0, 188, 1);
    color: white;
    width: 100%;
    margin-top: 20px;
}

.formImg {
    transform: rotate(90deg);
    height: 15rem;
}

@media (min-width: 768px) {
    section {
        padding: 0 5rem;
        margin-bottom: 7rem;
    }
    .intro{
        background-size: cover;
        background-position: unset;
    }
    .aboutDataCont {
        flex-direction: row;
    }
    .formCont {
        width: 80%;
        margin: 6rem 0;
    }
    .faq-item {
        width: 80%;
    }
    .formCont img{
        display: block;
    }
  
  }
  
  @media (min-width: 1024px) {
  }
  @media only screen and (min-width: 1365px) {
   
  }
  @media only screen and (min-width: 1500px) {
  
  }
  @media only screen and (min-width: 1700px) {
   
   
  }
  @media (min-width: 2049px) {
  }