 body {
      background: #f8f9fa; /* light grey background */
    }

    /* Hero Section */
    .recipes-hero {
      text-align: center;
      background: linear-gradient(135deg, #e9f5ec, #f5fff5);
      padding: 60px 20px;
      border-bottom: 4px solid #2e7d32;
    }
    .recipes-hero h1 {
      font-size: 36px;
      margin-bottom: 10px;
      color: #056608;
      font-weight: 700;
    }
    .recipes-hero p {
      font-size: 18px;
      color: #444;
      max-width: 700px;
      margin: auto;
    }

    /* Recipes List */
    .recipes-list {
      max-width: 1200px;
      margin: 50px auto;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    .recipe-card {
      display: flex;
      background: linear-gradient(135deg, #ffffff, #f9fff9);
      border-radius: 14px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.08);
      overflow: hidden;
      flex-wrap: wrap;
      border-top: 6px solid #2e7d32;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .recipe-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }
    .recipe-image {
      flex: 1 1 30%;
    }
    .recipe-image img {
      width: 100%;
      height:400px;
      object-fit: initial;
    }
    .recipe-details {
      flex: 1 1 60%;
      padding: 25px;
      background: #fff;
    }
    .recipe-details h2 {
      margin-top: 0;
      color: #2e7d32;
      font-size: 24px;
      border-bottom: 2px solid #e6f2e6;
      padding-bottom: 8px;
    }
    .recipe-details h3 {
      margin-bottom: 8px;
      margin-top: 20px;
      font-size: 18px;
      color: #444;
      border-left: 4px solid #81c784;
      padding-left: 8px;
    }
    .recipe-details ul,
    .recipe-details ol {
      margin: 0 0 15px 18px;
    }
    .servings-time {
      font-size: 14px;
      color: #777;
      margin-bottom: 10px;
    }
    .tips {
      font-style: italic;
      background: #f1fdf2;
      padding: 12px;
      border-left: 4px solid #43a047;
      margin-top: 15px;
      border-radius: 6px;
      color: #2e7d32;
    }

    /* Print & Download Buttons */
    .print-recipes {
      text-align: center;
      margin: 40px auto 80px;
    }
    .print-recipes .btn {
      background: #ffcc00;
      color: #000;
      border: none;
      padding: 10px 18px;
      border-radius: 25px;
      font-size: 14px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      margin-right: 10px;
      transition: 0.3s;
    }
    .print-recipes .btn:hover {
      background: #e6b800;
    }

    /* Disclaimer Box */
    .recipes-disclaimer {
      max-width: 1000px;
      margin: 30px auto 60px;
      padding: 0 20px;
    }
    .disclaimer-box {
      background: #fff8e1;
      border-left: 6px solid #ff9800;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    }
    .disclaimer-box h3 {
      margin-top: 0;
      color: #d35400;
    }
    .disclaimer-box p {
      margin: 0;
      font-size: 14px;
      color: #555;
      line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .recipe-card {
        flex-direction: column;
      }
      .recipe-image, .recipe-details {
        flex: 100%;
      }
    }
