body { margin: 0; font-family: Arial, sans-serif; background: #f8f9fa; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 30px; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1);}
.navbar .logo { font-size: 24px; font-weight: bold; color: #007bff; }
.navbar .menu a { margin-right: 15px; text-decoration: none; color: #333; }
.navbar .menu a:hover { color: #007bff; }

.hero { position: relative; text-align: center; }
.hero img { width: 100%; height: 350px; object-fit: cover; }
.hero-text { position: absolute; top: 30%; left: 50%; transform: translate(-50%, -30%); color: white; text-shadow: 1px 1px 5px rgba(0,0,0,0.7);}
.hero-text h1 { font-size: 36px; margin-bottom: 10px; }
.hero-text p { font-size: 18px; margin-bottom: 20px; }
.search-form input { padding: 10px; margin: 5px; border-radius: 6px; }
.search-form button { padding: 10px 15px; background: #ff5a5f; color: white; border: none; cursor: pointer; }

section { padding: 40px 20px; text-align: center; }
.cards { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.card { background: white; border-radius: 10px; overflow: hidden; width: 250px; box-shadow: 0 5px 15px rgba(0,0,0,0.1);}
.card img { width: 100%; height: 150px; object-fit: cover; }
.card p { margin: 10px 0; font-weight: bold; }

footer { background: #222; color: white; padding: 20px; text-align: center; }