  <style>
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    header {
      background: #0b1220;
      color: #fff;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    header nav a {
      color: #fff;
      margin: 0 10px;
      text-decoration: none;
      font-weight: bold;
    }
    .hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      padding: 3rem 1rem;
      background: linear-gradient(#1e3c72, #2a5298);
      color: white;
      min-height: 70vh;
      text-align: center;
    }
    .hero h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2.5rem;
    }
    .hero-images {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }
    .hero-images img {
      width: 600px;
      max-width: 95%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    }
    .benefits {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
      gap: 20px;
      padding: 40px 20px;
      background: #f8f9fc;
      text-align: center;
      flex-wrap: wrap;
    }
    .benefit {
      flex: 1;
      max-width: 320px;
    }
    .benefit img {
      display: block;
      margin: 0 auto 12px;
      max-width: 80px;
      height: auto;
    }
    .benefit h3 {
      margin: 10px 0;
      font-size: 1.3rem;
      font-weight: bold;
    }
    .order-section {
      padding: 40px 20px;
      background: #fff;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 30px;
      align-items: flex-start;
    }
    .order-left {
      flex: 2;
    }
    .order-right {
      flex: 1;
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }
    .order-right img {
      max-width: 650px;  /* enlarged from 380px */
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .order-section table {
      width: 100%;
      border-collapse: collapse;
    }
    .order-section th, .order-section td {
      border-bottom: 1px solid #ddd;
      padding: 8px;
      text-align: center;
    }
  </style>
