body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fffdf9;
    margin: 0;
    padding: 0;
    color: #2c2c2c;
  }
  
  .container {
    max-width: 850px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 10px;
  }
  
  .hero {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .hero img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .hero-text {
    text-align: center;
    margin-top: 20px;
  }
  
  .hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero-text p {
    font-style: italic;
    color: #555;
  }
  
  .recipe-info {
    display: flex;
    justify-content: space-between;
    background-color: #fff2e6;
    padding: 15px 20px;
    margin: 25px 0;
    border-left: 5px solid #e65c00;
    border-radius: 6px;
    font-weight: bold;
  }
  
  h2 {
    font-family: 'Playfair Display', serif;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
  }
  
  ul, ol {
    padding-left: 20px;
  }
  
  .instructions img {
    width: 100%;
    max-width: 600px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #aaa;
    padding: 20px 0;
  }
  