    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      color: #111;
      background: linear-gradient(to bottom right, #fff, #f4f4f4);
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* HEADER */
    header {
      background: #fff;
      border-bottom: 1px solid #ccc;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px;
    }
    .logo {
      font-size: 24px;
      font-weight: bold;
    }
    nav {
      display: flex;
      gap: 15px;
    }
    nav a, .buy-btn {
      text-decoration: none;
      color: #000;
      font-weight: 500;
      padding: 8px 12px;
    }
    .buy-btn {
      background: red;
      color: #fff;
      border-radius: 5px;
    }

    /* MOBILE MENU */
    .menu-toggle {
      display: none;
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
    }
    .mobile-nav {
      display: none;
      flex-direction: column;
      padding: 10px 20px;
    }
    .mobile-nav a {
      padding: 10px 0;
    }

    /* SECTIONS */
    .hero {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(to right, #fff, #eee);
    }
    .coupon-button {
      padding: 10px 20px;
      background: red;
      color: white;
      border: none;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
    }

    .section-title {
      text-align: center;
      font-size: 28px;
      margin: 60px 0 20px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-bottom: 60px;
    }
    .product, .review, .faq, .step {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .text-image {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      align-items: center;
      padding: 40px 0;
    }
    .text-image img {
      width: 300px;
      border-radius: 10px;
    }

    footer {
      background: #111;
      color: #eee;
      padding: 40px 20px;
    }
    footer a {
      color: #eee;
      text-decoration: underline;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      nav {
        display: none;
      }
      .menu-toggle {
        display: block;
      }
      .mobile-nav.active {
        display: flex;
      }
    }




h1 {
    font-size:36px;
}

h2 {
 font-size:30px;   
}
}
}