* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f3e5d8;
  padding: 40px 16px;
  display: flex;
  justify-content: center;
  color: #333;
}

.container {
  max-width: 740px;
  width: 100%;
}

.card {
  background-color: white;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.recipe-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 24px;
}

.title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
}

.description {
  font-size: 16px;
  margin-bottom: 24px;
  color: #5f5f5f;
}

.prep-time {
  background-color: #fff5fa;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.prep-time h2 {
  color: #7b284f;
  font-size: 18px;
  margin-bottom: 12px;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 24px;
}

ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.5;
}

h2 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #7b284f;
}

.nutrition {
  list-style: none;
  padding: 0;
}

.nutrition li {
  margin-bottom: 6px;
}

.attribution {
  text-align: center;
  font-size: 12px;
  margin-top: 24px;
}
