.hero-banner{
background:linear-gradient(120deg,#c9cccf,#b6c16d);
padding:80px 0;
color:white;
}

.container{
width:90%;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
}

/* LEFT TEXT */

.banner-text{
flex:1;
min-width:300px;
}

.banner-text h1{
font-size:35px;
margin-bottom:20px;
}

.banner-text p{
font-size:16px;
margin-bottom:25px;
line-height:1.6;
}

.banner-btn{
background:rgb(79, 63, 201);
color:#e6e9ec;
padding:12px 25px;
text-decoration:none;
font-weight:bold;
border-radius:5px;
}

/* FORM */

.banner-form{
flex:1;
min-width:300px;
background:rgb(239, 238, 243);
padding:30px;
border-radius:8px;
color:#201f1f;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.banner-form h3{
margin-bottom:15px;
}

.banner-form input,
.banner-form textarea{
width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ddd;
border-radius:4px;
font-size:14px;
}

.banner-form textarea{
height:100px;
resize:none;
}

.banner-form button{
width:100%;
background:rgb(8, 8, 8);
color:white;
border:none;
padding:12px;
font-size:16px;
border-radius:4px;
cursor:pointer;
}

.banner-form button:hover{
background:rgb(79, 63, 201);
}

/* MOBILE */

@media(max-width:768px){

.container{
flex-direction:column;
text-align:center;
}

.banner-text h1{
font-size:28px;
}

}