/* Responsive Modern Styles */ 
body { font-family: 'Segoe UI', sans-serif; margin: 0; color: #333; background: #f4f4f4; }
header { background: #005f73; color: white; text-align: center; padding: 1em 0; position: relative; }
nav { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
nav a { color: white; margin: 0 15px; text-decoration: none; font-weight: 600; transition: color 0.3s; }
nav a.active, nav a:hover { color: #94d2bd; }
.menu-toggle { display: none; background: transparent; border: none; color: white; font-size: 24px; cursor: pointer; }
.hero { background-size: cover; background-position: center; text-align: center; color: white; padding: 120px 20px; background-color: rgba(0,0,0,0.4); background-blend-mode: overlay; }
.hero .btn { display: inline-block; margin-top: 15px; background: #0a9396; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; transition: 0.3s; }
.hero .btn:hover { background: #007f83; }
.features { display: flex; justify-content: space-around; flex-wrap: wrap; background: #e9ecef; padding: 40px 20px; }
.features div { flex: 1 1 300px; text-align: center; margin: 10px; }
.content { padding: 40px 20px; background: white; max-width: 1000px; margin: 30px auto; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
.product-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.product-card { flex: 1 1 300px; background: #f8f9fa; padding: 20px; border-radius: 8px; box-shadow: 0 0 5px rgba(0,0,0,0.1); }
.product-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 10px; }
form { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
form input, form textarea { padding: 10px; border-radius: 5px; border: 1px solid #ccc; }
form button { background: #0a9396; color: white; border: none; padding: 10px; border-radius: 5px; cursor: pointer; }
form button:hover { background: #007f83; }
.gallery { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-top: 20px; }
.gallery img { width: 30%; border-radius: 8px; object-fit: cover; }
footer { background: #005f73; color: white; text-align: center; padding: 15px 0; margin-top: 30px; }
@media (max-width: 768px) { nav a { display: none; } nav.open a { display: block; background: #0a9396; margin: 10px 0; padding: 10px; border-radius: 5px; } .menu-toggle { display: block; position: absolute; top: 15px; right: 20px; } .features { flex-direction: column; } .gallery img { width: 100%; } }
