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

body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #fbe7e7;
    color: #333;
    padding: 0 5%;
}

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

header {
    text-align: center;
    position: relative;
}

header img {
    width: 100%;
    height: auto;
    max-width: 100%; 
    object-fit: cover;
}

.recipe-title {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 68px;
    font-weight: bold;
    font-family: 'Cedarville Cursive', cursive;
    color: #fff;
    white-space: nowrap;
}

.recipe-info {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 20px 0;
    margin-top: 20px;
}

.info-item {
    flex: 1;
    text-align: center;
}

.info-label {
    font-weight: bold;
}

.white-line {
    background-color: white;
    height: 1px;
    margin: 30px 0;
}

.description {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.left-column {
    float: left;
    width: 45%;
    padding-right: 5%;
}

h4 {
    font-family: 'Cedarville Cursive', cursive;
    color: #4e2c2a;
    font-size: 2rem;
    margin-top: 15px;
}

h3 {
    font-family: 'Cedarville Cursive', cursive;
    color: #4e2c2a;
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 15px;
}

ul {
    list-style-type: none;
    margin: 10px 0;
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

input[type="checkbox"] {
    margin-right: 10px;
}

.right-column {
    float: right;
    width: 55%;
}

.step-group {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 20px;
}

.step-group ol {
    padding-left: 20px;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.image-group {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.image-group img {
    width: 100%;
    height: auto;
    max-width: 230px;
    border-radius: 8px;
}
