body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1000px;
    margin: auto;
}
nav {
    background: #333;
    padding: 10px;
    text-align: center;
}
nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}
header {
    text-align: center;
    color: white;
    padding: 60px 20px;
    background-color: #444;
}
header .hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
}
section {
    padding: 50px 20px;
}
section h2 {
    text-align: center;
    margin-bottom: 30px;
}
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.product {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}
.product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
form button {
    padding: 10px 20px;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
form button:hover {
    background: #555;
}
footer {
    text-align: center;
    padding: 20px;
    background: #f4f4f4;
}
html {
    scroll-behavior: smooth;
}
