body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f8f6f2;
    color: #333;
}
header {
    background: #7cb342;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}
nav {
    background: #e0e0e0;
    padding: 0.5rem 1rem;
    text-align: center;
}
nav a {
    color: #7cb342;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
}
.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.recipe-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.recipe-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.recipe-card img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    max-height: 200px;
}
.recipe-title {
    font-size: 1.5rem;
    margin: 0;
    color: #7cb342;
}
.recipe-desc {
    margin: 0.5rem 0 0 0;
    color: #555;
}
footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #e0e0e0;
    color: #666;
    margin-top: 2rem;
}
@media (min-width: 600px) {
    .recipe-list {
        grid-template-columns: 1fr 1fr;
    }
}
