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

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

/* NAVBAR */
header {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.container {
    width: 90%;
    margin: auto;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

/* HERO */
.hero {
    height: 90vh;
    background: url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 35px;
}

.hero button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: green;
    color: white;
    cursor: pointer;
}

/* SECTIONS */
.section {
    padding: 60px 20px;
    text-align: center;
}

/* PRODUCTS */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product {
    text-align: center;
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

/* CONTACT */
.contact {
    background: #f4f4f4;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
}