body{
margin:0;
font-family:Arial, sans-serif;
background:#f5f7fa;
color:#1b2b3a;
}

/* HERO */
.hero{
position:relative;
min-height:100vh;
background:
linear-gradient(90deg, rgba(6,25,45,0.95) 35%, rgba(6,25,45,0.6) 60%, rgba(6,25,45,0.2)),
url('images/background.jpg') center/cover no-repeat;
color:white;
}

/* HEADER */
.header{
padding:25px 60px;
}

.logo{
width:110px;
}

/* LAYOUT */
.hero-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:40px 60px 80px;
gap:60px;
}

/* LEFT TEXT */
.hero-left{
max-width:560px;
margin-top:-40px;
}

h1{
font-size:52px;
line-height:1.1;
margin-bottom:20px;
}

.subtitle{
font-size:20px;
margin-bottom:20px;
opacity:0.9;
}

.benefits{
list-style:none;
padding:0;
margin-bottom:25px;
}

.benefits li{
margin:8px 0;
font-size:17px;
}

.description{
line-height:1.6;
opacity:0.9;
}

/* FORM */
.form-card{
background:white;
color:#1b2b3a;
padding:35px;
border-radius:14px;
width:380px;
box-shadow:0 25px 60px rgba(0,0,0,0.25);
}

.form-card h2{
margin-bottom:20px;
}

input{
width:100%;
padding:14px;
margin-bottom:14px;
border-radius:8px;
border:1px solid #d0d7e2;
font-size:15px;
}

input:focus{
outline:none;
border-color:#2c5d8a;
}

button{
width:100%;
padding:15px;
background:#1f4f82;
color:white;
border:none;
border-radius:8px;
font-size:16px;
font-weight:bold;
cursor:pointer;
transition:.25s;
}

button:hover{
background:#163a60;
transform:translateY(-2px);
}

.form-note{
font-size:13px;
text-align:center;
margin-top:10px;
color:#6b7a8c;
}

/* INFO SECTION */
.info-section{
padding:80px 20px;
background:white;
text-align:center;
}

.info-grid{
display:flex;
gap:40px;
max-width:1000px;
margin:auto;
margin-top:40px;
}

.info-grid div{
flex:1;
}

/* FAQ */
.faq{
padding:80px 20px;
max-width:800px;
margin:auto;
}

.faq h4{
margin-top:25px;
}

/* MOBILE */
@media(max-width:900px){

.hero-container{
flex-direction:column;
text-align:left;
padding:40px 25px;
}

.form-card{
width:100%;
}

h1{
font-size:36px;
}

}