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

body {
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    background: #ff7043;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

nav {
    background: white;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    margin-bottom: 10px;
}

section {
    margin-bottom: 50px;
}

section h2 {
    margin-bottom: 20px;
    color: #ff7043;
}

.recipe-card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.recipe-card h3 {
    margin-bottom: 10px;
}

.recipe-card button {
    margin-top: 10px;
    padding: 10px 15px;
    border: none;
    background: #ff7043;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.recipe-card button:hover {
    opacity: 0.9;
}

footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 20px;
    margin-top: 40px;
}