    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f7f7f7;
      color: #333;
    }
    header {
      background: url('images/Fat-Burn-Active-AM10.jpg') no-repeat center center/cover;
      color: white;
      padding: 80px 20px;
      text-align: center;
    }
    header h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }
    header p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: auto;
    }
    header .btn-banner {
      display: inline-block;
      margin-top: 20px;
      padding: 14px 32px;
      background-color: #4CAF50;
      color: white;
      text-decoration: none;
      font-weight: bold;
      border-radius: 6px;
      transition: background-color 0.3s ease;
    }
    header .btn-banner:hover {
      background-color: #3b9440;
    }

    /* Main section */
    section {
      max-width: 800px;
      background: white;
      margin: 30px auto;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    h2 {
      color: #4CAF50;
      margin-bottom: 10px;
    }
    p {
      line-height: 1.5;
    }
    .btn-buy {
      display: inline-block;
      margin-top: 15px;
      padding: 12px 30px;
      background-color: #4CAF50;
      color: white;
      text-decoration: none;
      font-weight: bold;
      border-radius: 6px;
      transition: background-color 0.3s ease;
    }
    .btn-buy:hover {
      background-color: #3b9440;
    }
    .section-image {
      max-width: 100%;
      /* height: auto; */
      border-radius: 10px;
      margin-top: 15px;
      margin-bottom: 15px;
    }
    .benefits-list {
      list-style: none;
      padding-left: 0;
    }
    .benefits-list li {
      padding: 5px 0;
      display: flex;
      align-items: center;
    }
    .benefits-list li::before {
      content: "✔";
      color: #4CAF50;
      margin-right: 8px;
    }

    .image1 {
  width: 250px;
  height: auto;
  border-radius: 10px; /* optional, gives smooth corners */
    }


    footer {
      background-color: #222;
      color: #bbb;
      text-align: center;
      padding: 20px 10px;
      font-size: 0.9rem;
      margin-top: 40px;
    }
    footer a {
      color: #4CAF50;
      text-decoration: none;
    }
    footer a:hover {
      text-decoration: underline;
    }