
body { font-family: 'Helvetica Neue', sans-serif; margin:0; color:#333; }
header { background:#fff; padding:20px; border-bottom:1px solid #eee; }
.navbar { display:flex; justify-content:space-between; align-items:center; max-width:1200px; margin:0 auto; }
.navbar ul { list-style:none; display:flex; gap:20px; margin:0; padding:0; }
.navbar a { text-decoration:none; color:#333; }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(250px,1fr)); gap:40px; padding:60px 20px; max-width:1200px; margin:0 auto; }
.service { background:#fff; border:1px solid #eaeaea; padding:30px; border-radius:12px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service:hover { transform:translateY(-5px); box-shadow:0 10px 20px rgba(0,0,0,0.1); }
footer { background:#f7f7f7; text-align:center; padding:40px 20px; margin-top:40px; }
form { display:flex; flex-direction:column; gap:10px; max-width:400px; margin:0 auto; }
input, textarea { padding:10px; border:1px solid #ccc; border-radius:5px; }
button { padding:10px; border:none; background:#333; color:#fff; cursor:pointer; border-radius:5px; }
