
body {
    margin: 0; font-family: 'Segoe UI', sans-serif; background: #fff; color: #333;
}
header { background: #FF6F3C; color: white; display: flex; justify-content: space-between; padding: 10px 20px; position: sticky; top: 0; z-index: 1000; }
.logo img { height: 50px; }
nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
nav a { color: white; text-decoration: none; font-weight: bold; }
.hero { text-align: center; padding: 80px 20px; background: #FF6F3C; color: white; }
.grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.card { width: 300px; background: #f9f9f9; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); text-align: center; }
.card img { width: 100%; height: 200px; object-fit: cover; }
form { display: flex; flex-direction: column; width: 300px; margin: auto; }
input, textarea { margin: 5px 0; padding: 10px; }
footer { background: #eee; text-align: center; padding: 20px; }
