body {
    background-color: #f2b577;
    color: #000000;
    font-family: sans-serif;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 5px 0 0;
    font-size: 1.1em;
}

.gallery {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.image-placeholder {
    width: 32%;
    height: 240px;
    background-color: #ff0000;
    border: 2px dashed #883c02;
    border-radius: 8px;
    box-sizing: border-box;
}

section {
    margin-bottom: 30px;
}

h2 {
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.about p {
    line-height: 1.6;
}

.ingredients-list {
    display: flex;
    justify-content: space-between;
}

.ingredients-list ul {
    width: 48%;
    list-style: none;
    padding: 0;
}

.ingredients-list li {
    margin-bottom: 10px;
}

.instructions .steps {
    display: flex;
    justify-content: space-between;
}

.instructions .step {
    width: 40%;
    background-color: #864300;
    color: white;
    padding: 20px;
    margin: 20px;
    box-sizing: border-box;
}

.instructions .step h3 {
    margin-top: 0;
}
