
* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }
body { line-height: 1.6; }
header { background: #333; color: #fff; padding: 10px 0; }
header .container { display: flex; justify-content: space-between; align-items: center; width: 90%; margin: auto; }
header nav ul { list-style: none; display: flex; }
header nav ul li { margin-left: 20px; }
header nav ul li a { color: #fff; text-decoration: none; font-weight: bold; }
.hero { position: relative; text-align: center; color: #fff; }
.hero img { width: 100%; height: 400px; object-fit: cover; }
.hero-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.featured-products, .products-list { padding: 50px 0; text-align: center; background: #f4f4f4; }
.product-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.product-card { background: #fff; padding: 15px; width: 250px; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.1); transition: transform 0.3s; text-align: center; }
.product-card:hover { transform: translateY(-5px); }
.product-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; }
.about-section, .contact-section { padding: 50px 20px; text-align: center; }
.contact-section form { display: flex; flex-direction: column; width: 50%; margin: auto; }
.contact-section input, .contact-section textarea { padding: 10px; margin-bottom: 10px; border-radius: 5px; border: 1px solid #ccc; }
.contact-section button { padding: 10px; background: #333; color: #fff; border: none; cursor: pointer; }
.contact-section button:hover { background: #555; }
footer { background: #333; color: #fff; padding: 10px 0; text-align: center; }
@media (max-width:768px){.product-grid{flex-direction:column;align-items:center;}.contact-section form{width:80%;}}
