body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
  background: #ffffff;
}

h1 {
  font-size: 2.2rem;
  color: #d32f2f;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #d32f2f;
  padding-bottom: 10px;
}

h2 {
  font-size: 1.5rem;
  color: #d32f2f;
  margin-bottom: 15px;
  margin-top: 25px;
}

h3 {
  font-size: 1.2rem;
  color: #d32f2f;
  margin-bottom: 10px;
  margin-top: 20px;
}

.banner-image {
  width: 100%;
  height: 300px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.recipe-info {
  background: #f5f5f5;
  border: 1px solid #d32f2f;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 5px;
  text-align: center;
}

.info-item {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 10px;
}

.info-label {
  font-weight: bold;
  color: #666;
}

.info-value {
  color: #d32f2f;
  font-weight: bold;
}

section {
  background: white;
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.detailed-ingredients {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.detailed-ingredients h3 {
  color: #d32f2f;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.process-image {
  text-align: center;
  margin: 20px 0;
  padding: 15px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.process-image img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
}

.image-caption {
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.image-gallery {
  text-align: center;
}

.image-gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  margin: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

a {
  color: #d32f2f;
  text-decoration: underline;
}

.source-section {
  text-align: center;
  font-style: italic;
}