
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root{
--primary:#1d4ed8;
--accent:#f59e0b;
--dark:#0f172a;
--light:#f8fafc;
}

*{margin:0;padding:0;box-sizing:border-box}

body{
font-family:'Inter',sans-serif;
background:linear-gradient(120deg,#0f172a,#1e293b);
color:#fff;
line-height:1.6;
}

.container{max-width:1200px;margin:auto;padding:60px 20px}

header{
text-align:center;
padding:100px 20px;
background:linear-gradient(135deg,var(--primary),#0ea5e9);
}

header h1{font-size:3rem;font-weight:800}
header h2{font-weight:300;margin-top:15px}

section{margin:80px 0}

.section-title{
font-size:2rem;
margin-bottom:30px;
border-left:6px solid var(--accent);
padding-left:15px;
}

.card{
background:rgba(255,255,255,0.05);
backdrop-filter:blur(15px);
padding:30px;
border-radius:18px;
box-shadow:0 20px 40px rgba(0,0,0,0.4);
transition:.4s;
}

.card:hover{transform:translateY(-8px)}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

img{
max-width:100%;
border-radius:14px;
}

.contact-box{
text-align:center;
font-size:1.2rem;
}

button{
background:var(--accent);
border:none;
padding:12px 25px;
border-radius:10px;
color:#000;
font-weight:600;
cursor:pointer;
}

footer{
text-align:center;
padding:40px;
background:#020617;
color:#94a3b8;
margin-top:80px;
}
