*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
background:#0f172a;
color:white;
line-height:1.6;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#020617;
position:sticky;
top:0;
z-index:1000;
}

nav h1{
font-size:32px;
font-weight:700;
}

.btn{
background:#2563eb;
color:white;
text-decoration:none;
padding:12px 24px;
border-radius:8px;
font-weight:bold;
transition:.3s;
}

.btn:hover{
background:#1d4ed8;
}

.hero{
background:linear-gradient(135deg,#020617,#0f172a,#1e293b);
padding-bottom:50px;
}

.hero-content{
display:flex;
justify-content:space-around;
align-items:center;
padding:60px 40px;
flex-wrap:wrap;
gap:40px;
}

.hero-content img{
max-width:700px;
width:100%;
filter:drop-shadow(0 20px 35px rgba(0,0,0,.5));
}

.hero-content h2{
font-size:48px;
margin-bottom:15px;
}

.hero-content p{
font-size:18px;
max-width:600px;
}

.price{
font-size:36px;
font-weight:bold;
color:#60a5fa;
margin:15px 0;
}

section{
padding:70px 40px;
}

section h2{
text-align:center;
font-size:38px;
margin-bottom:25px;
}

section p{
max-width:1000px;
margin:auto;
text-align:center;
font-size:18px;
}

ul{
max-width:700px;
margin:auto;
font-size:18px;
line-height:2;
}

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:30px;
}

.stats div{
background:white;
color:#111827;
padding:30px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.stats h3{
font-size:40px;
color:#2563eb;
margin-bottom:10px;
}

#quote{
background:linear-gradient(135deg,#08142d,#111827);
}

.quoteIntro{
text-align:center;
max-width:900px;
margin:auto;
margin-bottom:40px;
color:#dbeafe;
font-size:20px;
}

.quoteForm{
background:white !important;
color:#111827 !important;
max-width:800px;
margin:auto;
padding:40px;
border-radius:25px;
box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.quoteForm label{
display:block;
font-size:16px;
font-weight:bold;
margin-top:15px;
margin-bottom:8px;
color:#111827;
}

.quoteForm input,
.quoteForm textarea{
width:100%;
padding:14px;
border:1px solid #cbd5e1;
border-radius:10px;
font-size:15px;
outline:none;
transition:.3s;
}

.quoteForm input:focus,
.quoteForm textarea:focus{
border-color:#2563eb;
box-shadow:0 0 0 4px rgba(37,99,235,.15);
}

.quoteForm textarea{
min-height:150px;
resize:vertical;
}

.submitBtn{
width:100%;
margin-top:25px;
padding:16px;
border:none;
border-radius:10px;
font-size:18px;
font-weight:bold;
background:linear-gradient(90deg,#2563eb,#1d4ed8);
color:white;
cursor:pointer;
transition:.3s;
}

.submitBtn:hover{
background:linear-gradient(90deg,#1d4ed8,#1e40af);
}

footer{
background:#020617;
padding:50px 20px;
text-align:center;
}

footer h3{
font-size:32px;
margin-bottom:15px;
}

footer p{
font-size:17px;
margin-bottom:10px;
}

@media(max-width:768px){

nav{
flex-direction:column;
gap:15px;
text-align:center;
}

.hero-content{
padding:40px 20px;
text-align:center;
}

.hero-content h2{
font-size:34px;
}

.hero-content p{
font-size:16px;
}

section{
padding:50px 20px;
}

section h2{
font-size:30px;
}

.quoteForm{
padding:25px;
}

footer h3{
font-size:24px;
}

}