.topBanner img{
    max-width: 100%;
    width: 100%;
}

.top-content{
    background: #fff;
    margin: -100px 0 20px;
    z-index: 1;
    position: relative;
    border-radius: 20px;
    padding: 30px 30px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 24px;
}

.top-content .subheading{
    font-size: 24px;
    font-weight: 600;
    color: #444;
}

.form-section{
    background-color: #FBF7F0;
    padding: 64px 200px;
}

.form-title{
    color: #621B02;
}

.form-email{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 16px;
}

.form-email p a{
    font-weight: 500;
    color: #000;
    text-decoration: underline;
}

.why-points{
    margin-top: 16px;
}

.why-choose-card{
    padding: 24px;
    background-color: rgba(209, 172, 102, 10%);
    border: 1px solid transparent;
    border-radius: 0px;
    height: 100%;
    margin-bottom: 24px !important;
    cursor: pointer;  
    transition: all 0.5s;
}
.why-choose-card:hover{
    box-shadow: 4px 4px 16px #00000010;
    border: 1px solid var(--primaryGolden);
}

.why-choose-card h4{
    color: #000;
    font-size: 20px;
}

.why-points .row{
    row-gap: 24px;
}

@media screen and (max-width:768px) {
    .form-section{
        padding: 64px 100px;
    }
}
@media screen and (max-width:520px) {
    .form-section{
        padding: 64px;
    }
}
@media screen and (max-width:420px) {
    .form-section{
        padding: 42px;
    }
}