* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #fffdf5;
    color: #333;
}

header {
    background: #d94f00;
    color: white;
    padding: 20px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header h1 {
    float: left;
}

nav ul {
    float: right;
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('images/spices-bg.png') no-repeat center center/cover;
    text-align: center;
    color: white;
    padding: 100px 20px;
}

.hero .btn {
    background: #ffd700;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

#products {
    padding: 40px 0;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    text-align: center;
}

.product img {
    max-width: 100%;
    height: auto;
}

#about, #contact {
    padding: 40px 0;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

form button {
    background: #d94f00;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px 0;
}
