body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.recipe-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

h2 {
    color: #444;
    margin-top: 30px;
}

.recipe-details {
    color: #666;
    margin-bottom: 30px;
}

.ingredients ul, .steps ol {
    padding-left: 20px;
}

.ingredients li, .steps li {
    margin-bottom: 10px;
}
.hero-image {
    width: 100%;
    height: 400px;
    margin: -30px -30px 30px -30px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.gustave-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #37618e;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    transition: background-color 0.2s;
}

.gustave-button:hover {
    background-color: #2c4d72;
}

.gustave-button img {
    width: 24px;
    height: 24px;
}