
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    font-size: 18px;
    background-color: #ffffff;
    color: #333;
    padding: 0;
    margin: 0;
  }
  
  .wrapper {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
  }
  
  .header {
    background-color: #f1c40f; 
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
  }
  
  
  .navigation ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  .navigation li {
    display: inline;
  }
  
  .navigation a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
  }
  
  .navigation a:hover {
    color: #d35400; 
  }
  
  main {
    margin-top: 30px;
  }
  
  .intro, .featured-recipe {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .intro h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .intro p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .featured-recipe h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .featured-recipe a {
    text-decoration: none;
    color: #333;
  }
  
  .featured-image {
    width: 300px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 2px solid #f1c40f;
  }
  
  .recipe-title {
    font-size: 20px;
    font-weight: bold;
  }
  

  .footer {
    background-color: #eeeeee;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    border-radius: 8px;
    color: #333;
  }

  .logo-text {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }
  
  .footer a {   text-decoration: none;
    color: #333;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  

  .recipe-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
  }
  
  .equipment-section, .ingredients-section {
    flex: 1 1 400px;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  
  .equipment-section h2, .ingredients-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .equipment-list li, .ingredients-list li {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .featured-recipe {
    background-color: #f9f9f9;
    padding: 15px;
    margin-top: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  
  .featured-recipe h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .featured-recipe ol, .featured-recipe ul {
    margin-left: 20px;
    margin-bottom: 15px;
    text-align: justify;
  }
  
  .featured-recipe p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .featured-recipe ol li p {
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 18px;
  }
  
  .table th,
  .table td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
    vertical-align: top;
  }
  
  .table th {
    background-color: #f1f1f1;
    font-weight: bold;
    
  }
  
  .table ul {
    margin: 0;
    padding-left: 20px;
  }
  
  .table ul li {
    margin-bottom: 8px;
  }
  
  .table thead th:first-child {
    text-align: center;
    font-size: 16px;
    background-color: #e0e0e0;
   
  }
  

    .intro, .feature {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .intro h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .intro p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .feature h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .feature a {
    text-decoration: none;
    color: #333;
  }
  
  .featured {
    width: 300px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 2px solid #f1c40f;
  }

  form label {
  display: block;
  margin-top: 20px;
  margin-bottom: 5px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.table td p {
  margin-bottom: 10px;
}

  @media print {
    body {
      font-family: Arial, sans-serif;
      font-size: 7px;
      color: #000;
      background: none;
      margin: 0;
      padding: 5px;
    }

    @page {
      margin: 0;
    }
  
    .wrapper {
      width: 100%;
      margin: 0;
      padding: 0;
    }
  
    header, .header-container, nav, .navigation, .logo-text, button, img, .footer, .feature, .intro {
      display: none;
    }
  
    h1 {
      font-size: 8px;
    }
  
    h2 {
      font-size: 7px;
    }
  
    p, li {
      font-size: 6px;
    }
  
    ul, ol {
      margin-left: 15px;
      margin-bottom: 8px;
    }
  
    .intro, .featured-recipe, .recipe-details,.featured-recipe {
      page-break-inside: avoid;
    }
  

    .intro, .recipe-section, .featured-.featured-recipe, .footer {
      margin-bottom: 10px;
      background: none;
      border: none;
      box-shadow: none;
      color: #000;
      padding: 5px 0;
      margin: 0 0 5px 0;
    }

    .footer {
      display: none; 
    }
  }