* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1a1a1a;
    color: white;
}

.logo {
    width: 150px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 60px;
    background-color: #e1e1e1;
}

.hero h1 {
    font-size: 2.5em;
}

.hero button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #ff6600;
    color: white;
    border: none;
    cursor: pointer;
}

.products {
    padding: 40px;
    text-align: center;
}

.product-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.product-item img {
    width: 150px;
    height: 150px;
}

.about, .contact {
    padding: 40px;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin: auto;
}

.contact input, .contact textarea, .contact button {
    padding: 10px;
    font-size: 1em;
}

.footer {
    padding: 20px;
    text-align: center;
    background-color: #1a1a1a;
    color: white;
}
