
    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      padding-bottom: 120px;
    }
    @media (max-width: 768px) {
  body {
    padding-bottom: 170px;
  }
}
    .heading{
        color: #502e09;
    }
    .hero {
      background: linear-gradient(135deg, #feec9c, #feec9c);
      color: #fff;
      padding: 20px 20px;
      text-align: center;
    }
    .hero-logo img {
      max-width: 180px;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-weight: bold;
      font-size: 1.4rem;
      color: #502e09;
    }
    .hero p {
      color: #333;
      font-size: 1rem;
    }
    .btn-yellow {
      background: #FFD700;
      color: #502e09;
      font-weight: 700;
      padding: 12px 25px;
      border-radius: 8px;
      text-transform: uppercase;
      border: none;
      font-size: 1.5rem;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
       transition: all 0.3s ease;
    }
    .btn-yellow:hover{
        color: #502e09;
        border: 1px solid #502e09;
    }
    .info-box {
      background: linear-gradient(135deg, #b18b45, #e8b859);
      color: #ffffff !important;
      padding: 15px 0px 10px 0px;
      border-radius: 10px;
      text-align: center;
      justify-content: center;
      align-items: center;
      font-weight: 600;
      box-shadow: 0px 3px 6px rgba(0,0,0,0.15);
      display: flex;

    }
    .info-box p{
        color: #ffffff;
        font-size: 20px;
        font-weight: 700;
            padding-top: 10px;
            padding-left: 4px;
    }
    .info-box i {
      font-size: 24px;
      margin-bottom: 5px;
       color: #ffffff;
    }
    .hero-img {
      max-width: 100%;
      border-radius: 12px;
    }
    .hero-price{
      background:linear-gradient(90deg,#ff6a00,#ff9500); 
      color:#fff; 
      border-radius:50px;
      padding: 15px;
      border: none;
      font-weight: 700;
      font-size: 18px;
    }

    /* Mobile only adjustments */
/* Mobile only adjustments */
@media (max-width: 767.98px) {
  .hero {
    text-align: center;
    padding: 30px 15px;
  }

  .hero h1 {
    font-size: 1.4rem;   /* smaller size for mobile */
  }

  .hero h1 br {
    display: none; /* hide <br> only on mobile */
  }

  .hero-logo img {
    max-width: 140px;
  }

  .hero .btn-yellow {
    font-size: 1rem;
    padding: 10px 18px;
  }

  .hero-price {
    font-size: 18px;
    padding: 12px 20px;
  }

  /* Make the right content (image) appear first */
  .hero .col-lg-5 {
    order: -1; /* image above text on mobile */
    margin-bottom: 20px;
  }

  /* Info boxes - equal height */
  .row.g-3 {
    display: flex;
    flex-wrap: wrap;
  }
  .row.g-3 > [class*="col-"] {
    display: flex;
  }
.info-box {
    width: 100%;
    aspect-ratio: 1 / 1; /* Keeps width and height equal */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
  }
  .info-box i {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .info-box p {
    font-size: 16px;
    padding: 0;
  }
   .row.text-center.g-3 > [class*="col-"] > div {
    aspect-ratio: 1 / 1;   /* Makes the box square */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .content-box{
    padding-left: 40px;
  }
}



    /*  Who is this for  */
    .box-content{
        background:linear-gradient(90deg,#b18b45, #e8b859);
        box-shadow:0 3px 8px rgba(0,0,0,0.2);
        color: #ffffff;
    }

    /* youtub video */
      .video-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
  }

/* faq */

/* Remove the bootstrap arrow and replace it with plus/minus */
.accordion-button {
  padding-right: 2.25rem; /* room for the icon */
}

/* disable default background-image arrow and set our symbol */
.accordion-button::after {
  background-image: none;    /* remove default SVG arrow */
  content: "➕";
  font-size: 1.2rem;
  color: #fff;
  width: auto;
  transform: none;
  margin-left: 0.75rem;
}

/* When open, show minus */
.accordion-button:not(.collapsed)::after {
  content: "➖";
}

/* make the collapsed button darker and the body white */
.accordion-button { background-color: #502e09; color: #fff; }
.accordion-item .accordion-body { background: #fff; color: #502e09; }