* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #200404;
    color: white;
    padding: 1rem;
    text-align: center;
}

nav {
    background-color: #ff8787;
    padding: 1rem;
    overflow: hidden;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

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

.hero {
    position: relative;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://source.unsplash.com/1600x900/?cooking');
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.features {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background-color: #f8f9fa;
}

.feature-card {
    text-align: center;
    padding: 6rem;
}

.feature-card i {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.left {
    float: left;
}

.right {
    float: right;
}

footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}