*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:tahoma;
background:#f4f7fb;
padding:20px;
line-height:1.8;
}

.container{
max-width:1100px;
margin:auto;
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.top-box{
background:#0f172a;
color:white;
padding:25px;
border-radius:15px;
text-align:center;
margin-bottom:20px;
}

.price{
font-size:22px;
font-weight:bold;
margin-top:10px;
color:#fbbf24;
}

.trust-box{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:10px;
margin-bottom:25px;
}

.trust-box div{
background:#eff6ff;
padding:15px;
border-radius:10px;
text-align:center;
border:1px solid #bfdbfe;
}

.section{
margin-top:30px;
padding:20px;
background:#fafafa;
border-radius:15px;
border:1px solid #e5e7eb;
}

.section h2{
margin-bottom:20px;
color:#1d4ed8;
}

.form-group{
margin-bottom:15px;
}

label{
display:block;
margin-bottom:8px;
font-weight:bold;
}

input[type=text],
input[type=number],
input[type=file],
input[type=email],
textarea,
select{
width:100%;
padding:12px;
border:1px solid #d1d5db;
border-radius:10px;
}

textarea{
resize:vertical;
min-height:120px;
}

.btn{
background:#2563eb;
color:white;
padding:12px 20px;
border:none;
border-radius:10px;
cursor:pointer;
}

.btn:hover{
background:#1d4ed8;
}

.submit-btn{
width:100%;
margin-top:30px;
padding:16px;
font-size:18px;
background:#16a34a;
color:white;
border:none;
border-radius:12px;
cursor:pointer;
}

.submit-btn:hover{
background:#15803d;
}

@media(max-width:768px){

.container{
padding:15px;
}

.price{
font-size:18px;
}

}