body{
font-family: 'Segoe UI', Arial, sans-serif;
margin:0;
background:#f4f6fb;
color:#333;
}

header{
background:#2563eb;
color:white;
padding:15px 8%;
display:flex;
justify-content:space-between;
align-items:center;
}

header h1{
font-size:20px;
margin:0;
}

nav a{
color:white;
text-decoration:none;
margin-left:20px;
font-weight:500;
}

.hero{
padding:80px 8%;
text-align:center;
background:white;
}

.hero h2{
font-size:42px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
max-width:700px;
margin:auto;
}

.container{
padding:60px 8%;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:30px;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
text-align:center;
transition:0.2s;
}

.card:hover{
transform:translateY(-5px);
}

.card a{
text-decoration:none;
color:#2563eb;
font-weight:bold;
}

button{
background:#2563eb;
border:none;
padding:10px 20px;
color:white;
border-radius:6px;
cursor:pointer;
}

input,textarea{
width:100%;
padding:10px;
margin-top:5px;
margin-bottom:15px;
border-radius:5px;
border:1px solid #ddd;
}

footer{
background:#1f2937;
color:white;
text-align:center;
padding:30px;
margin-top:60px;
}