  /* Reset */
    * { margin:0;
      padding:0;
       box-sizing:border-box; 
       font-family: 'Inter', sans-serif;
       }
    body { background:#fff;
      color:#111; 
      line-height:1.5; 
        font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000;
  
    }
 
    /* Top Banner */
    .top-banner { background:#111;
       color:#fff;
        text-align:center;
         padding:8px 0; 
         font-weight:600;
          font-size:14px; 
        }
 
    /* Header */
    header { display:flex;
       justify-content:space-between;
       align-items:center; 
       padding:20px 40px;
       margin-left: 42%;
      }
    .logo { font-weight:700;
       font-size:20px; 
       letter-spacing:1px; 
      }
    .cart { font-size:20px;
       cursor:pointer;
       }
 
    /* Main content */
    .main { display:flex;
       flex-wrap:wrap;
        max-width:1200px;
         margin: 30px auto 70px auto;
          gap:40px;
           padding:0 20px;
           }
    .product-image { flex:1 1 400px;
     }
    .product-image img { width:100%;
       border-radius:8px;
       }
 
    .product-details { flex:1 1 400px;
       display:flex;
        flex-direction:column;
         gap:15px;
         }

/* Responsive: Make .main section mobile-friendly */
@media (max-width: 600px) {
  .main {
    flex-direction: column;
    gap: 20px;
    padding: 0 8px;
    margin: 16px auto 40px auto;
  }
  .product-image,
  .product-details {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .product-title {
    font-size: 28px;
    line-height: 32px;
  }
  .price {
    font-size: 18px;
  }
}
    .rating { display:flex;
       align-items:center;
        gap:8px; 
        font-size:14px; 
        color:#555; 
      }
    .rating span { color:#FFD700;
       font-weight:700;
       }
 
    .product-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 53px;
}
    .price { font-size:24px;
       font-weight:700; }
    .price del { color:red;
       margin-left:10px;
        font-weight:700; }
 
    .description { font-size:16px;
       color:#555;
       }
    .features { list-style:none; 
      padding-left:0;
       margin-top:10px;
       }
    .features li { display:flex;
       align-items:flex-start;
        gap:10px; 
        margin-bottom:8px;
         font-size:15px;
         }
    .features li::before { content:"✔";
     color:green;
      font-weight:bold;
     }
 
    .add-to-cart { background:green;
       color:#fff;
        border:none;
         padding:12px 20px;
          border-radius:5px;
           font-size:16px;
            font-weight:600;
             cursor:pointer;
              margin-top:15px;
             }
 
    /* Icons section */
    .icons { text-align: center;
       margin-top:20px;
       }
    .icons div { display:flex;
       align-items:center;
        gap:8px;
         font-size:14px; 
         color:#555; }
 .black-circle {
    display: flex;
    gap: 10px;
    align-items: center;
}
.mains {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
    /* Review */
    .review { margin-top:25px; 
       padding:15px;
        border:1px solid #eee;
         border-radius:6px; 
         background:#f9f9f9;
          font-size:14px;
    display: flex;
  flex-direction: column;
  gap: 10px;
    }
    .first-bottom {
       color: green;
    }
    .review span { font-weight:600;
       color:#333;
       }
 


           .accordion {
      width: 600px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .accordion-item {
      border-bottom: 1px solid #ddd;
    }

    .accordion-header {
      width: 100%;
      background: #fff;
      border: none;
      outline: none;
      cursor: pointer;
      text-align: left;
      padding: 15px 20px;
      font-size: 16px;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s ease;
    }

    .accordion-header:hover {
      background: #f3f3f3;
    }

    .accordion-header i {
      transition: transform 0.3s ease;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      background: #fff;
      padding: 0 20px;
      transition: all 0.3s ease;
    }

    .accordion-content p {
      margin: 15px 0;
    }

    .accordion-item.active .accordion-content {
      max-height: 200px;
      padding: 15px 20px;
    }

    .accordion-item.active .accordion-header i {
      transform: rotate(180deg);
    }

.jenny-section {
    display: flex;
    gap: 50px;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-block: 50px;
    background-color: #eee;

}
.jenny-one {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    max-width: 260px;
    width: 100%;
    text-align: center;
}

.video-section {
  background-color: #1c1c1c; /* dark background */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem;
  max-width: 115rem;
  margin: 0 auto;
}
 
.video-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 120rem; /* center area width */
  width: 100%;
  gap: 6rem;
  flex-wrap: wrap;
}
 
/* Left Side: Text */
.video-text {
  flex: 1;
  color: #fff;
  min-width: 30rem;
}
 
.video-text h2 {
  font-size: 4.7rem;
  font-weight: 700;
  line-height: 4.4rem;
  margin-bottom: 2.4rem;
}
 
.video-text p {
  font-size: 1.6rem;
  color: #e0e0e0;
  font-weight: 500;
}
 
/* Right Side: Video */
.video-embed {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 30rem;
}
 
.video-embed iframe {
  width: 100%;
  max-width: 50rem;
  height: 28rem;
  border-radius: 0.8rem;
}
 



.neuron-img {
    text-align: center;
    margin-block: 30px;
}

/* ================================
   GLOBAL STYLES
================================ */
html {
  font-size: 62.5%; /* 1rem = 10px */
}
 
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000000;
}
 
/* ================================
   SECTION 2: Benefits Start
================================ */
.benefits-section {
  padding: 2rem 2rem;
  max-width: 144rem;
  margin: 0 auto;
}
 
.scraped-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 6rem; /* row-gap and column-gap */
}
 
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 2.5rem;
}
 
.number {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.6rem;
}
 
.content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
}
 
.content p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}
         .footer {
            background: #000;
            padding: 60px 40px 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-disclaimer {
            color: #999;
            font-size: 13px;
            line-height: 1.6;
        }

        .footer-section h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fff;
        }

        .footer-section p,
        .footer-section a {
            color: #999;
            font-size: 14px;
            line-height: 1.8;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }

        .footer-section a:hover {
            color: #fff;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid #222;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright {
            color: #666;
            font-size: 13px;
        }

        .payment-icons {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .payment-icons img {
            height: 28px;
            background: #fff;
            padding: 6px 8px;
            border-radius: 4px;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }
/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 1024px) {
  .scraped-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
 
  .benefit-item {
    flex-direction: row;
    align-items: flex-start;
  }
}
 
@media (max-width: 600px) {
  .number {
    width: 3rem;
    height: 3rem;
    font-size: 1.4rem;
  }
 
  .content h3 {
    font-size: 1.6rem;
  }
 
  .content p {
    font-size: 1.3rem;
  }
  .jenny-section {
    flex-direction: column;
  }
}
/* ================================
   SECTION 2: Benefits End
================================ */
 
 
/* ============================================
   SECTION 1: BPC-157 START
============================================ */
.bpc-section {
  background-color: #ffffff;
  max-width: 144rem;
  margin: 0 auto;
padding: 0rem 7rem 7rem 7rem;
}
 
.bpc-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  flex-wrap: wrap;
}
 
/* Left Side Image */
.bpc-image {
  flex: 1;
  min-width: 30rem;
}
 
.bpc-image img {
  width: 100%;
  max-width: 60rem;
  height: auto;
  display: block;
  border-radius: 0.8rem;
}
 
/* Right Side Content */
.bpc-content {
  flex: 1;
  max-width: 53.4rem; /* as you mentioned earlier */
}
 
.bpc-content h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 5rem;
  margin-bottom: 2.4rem;
  text-align: center;
}
 
.bpc-content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  font-weight: 400;
  text-align: center;
}
 
/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1024px) {
  .bpc-container {
    flex-direction: column;
    text-align: center;
  }
 
  .bpc-image img {
    max-width: 100%;
  }
 
  .bpc-content {
    max-width: 100%;
  }
 
  .bpc-content h2 {
    font-size: 3.6rem;
    line-height: 4rem;
  }
}
 
@media (max-width: 600px) {
  .bpc-section {
    padding: 6rem 3rem;
  }
 
  .bpc-content h2 {
    font-size: 3rem;
    line-height: 3.6rem;
  }
 
  .bpc-content p {
    font-size: 1.4rem;
  }
}
/* ============================================
   SECTION 1: BPC-157 END
============================================ */
 
  .studies-section {
    max-width: 1160px;
    margin: 0 auto;
      background-color: #f5f5f5;
      padding: 80px 60px;
    }

    .studies-section h2 {
      font-size: 36px;
      font-weight: 700;
      color: #111;
      margin-bottom: 10px;
    }

    .studies-section p.subtitle {
      color: #555;
      font-size: 16px;
      margin-bottom: 50px;
    }

    .studies-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .study-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: #111;
      margin-bottom: 10px;
      line-height: 1.4;
      quotes: '"' '"';
    }

    .study-card h3::before {
      content: open-quote;
    }

    .study-card h3::after {
      content: close-quote;
    }

    .study-card p {
      color: #444;
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .study-card a {
      color: #111;
      font-weight: 500;
      text-decoration: underline;
      transition: color 0.2s ease;
    }

    .study-card a:hover {
      color: #000;
    }




    /* Responsive */
    @media (max-width: 992px) {
      .studies-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .studies-grid {
        grid-template-columns: 1fr;
      }

      .studies-section {
        padding: 60px 30px;
      }
    }


 .scraped-container {
            
            align-items: center;
            gap: 40px;
            max-width: 950px;
            width: 100%;
            justify-content: center;
  margin: 40px auto;
        }

        .image-container {
            flex-shrink: 0;
            text-align: center;
            
        }

        .image-container img {
            /* width: 280px; */
            height: auto;
        }

        .text-box {
            background: #000;
            color: white;
            padding: 80px 45px;
           
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            flex: 1;
        }

        .text-box h2 {
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 600;
            line-height: 1.3;
            text-align: center;
        }

        .text-box p {
            font-size: 16px;
            line-height: 1.6;
            color: #ddd;
            text-align: center;
        }

        @media (max-width: 768px) {
            .scraped-container {
                flex-direction: column;
                gap: 30px;
            }

            .image-container img {
                width: 220px;
            }

            .text-box {
                padding: 35px 30px;
                text-align: center;
            }

            .text-box h2 {
                font-size: 26px;
                text-align: center;
            }
            .accordion{
                width: 100%;
            }
            header{
                margin-left: -1%;
            }
            .neuron-img img{
                width: 100%;
            }
            .last-review-section{
                max-width: 100%;
                padding: 0 20px;
            }
            .image-container {
  margin: 0 auto;
}
.benefits-section {
  padding: 0rem 2rem;
  max-width: 144rem;
  margin: 0 auto;
}
.scraped-container {
  align-items: center;
  gap: 40px;
  max-width: 950px;
  width: 100%;
  justify-content: center;
  margin: 30px auto;
}
.product-image img {
    margin-bottom: 20px;
}
        }


.fixer {
    text-align: center;
    font-size: 30px;
}

.fixer-para {
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
}

.accordion2 {
    margin: 0 auto 100px auto;

}


/* Verified customer badge */
 
.verified-name{
    font-family: Arial, Helvetica, sans-serif;
    font-weight:600;
    font-size:1.6rem; /* 16px */
    color:#0b1b2b;
}
.verified-badge{
    display:inline-flex;
    align-items:center; /* vertically center with name */
    gap:8px;
    background:transparent;
    vertical-align:middle;
}
.verified-badge .verified-icon{
    width:15px;
    height:15px;
    display:block;
    flex-shrink:0;
}
.verified-text{
    font-family: Arial, Helvetica, sans-serif;
    font-size:1.4rem;
    color:#0b1b2b; /* use body text color so "Verified" reads clearly next to black circle */
    font-weight:600;
    line-height:1; /* keep text vertically aligned with icon */
}
.reviewed-customer{
    border: 1.5px solid #e0e0e0;
    margin-bottom: 2rem;
}
.last-review-section{
    max-width: 115rem;
    margin: 0 auto;
}
.verified-customer{
    display: flex;
    flex-direction: column;
    padding: 2rem 3rem;
}
.stars-5{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.stars-5 span{
    font-size: 1.4rem;
    width: 600;
   
}
 












































/* ================================================
   RESPONSIVE DESIGN
================================================ */
@media (max-width: 1024px) {
  .video-container {
    flex-direction: column;
    text-align: center;
  }
 
  .video-embed iframe {
    max-width: 100%;
    height: 25rem;
  }
 
  .video-text h2 {
    font-size: 3rem;
    line-height: 3.6rem;
  }
}
 
@media (max-width: 600px) {
  .video-section {
    padding: 6rem 2rem;
  }
 
  .video-text h2 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
 
  .video-text p {
    font-size: 1.4rem;
  }
 
  .video-embed iframe {
    height: 22rem;
  }
}
/* ================================================
   SECTION 3: Video Quote Section END
================================================ */















































































    /* Responsive */
    @media (max-width:768px){
        
        .product-title { font-size:22px; }
        .price { font-size:20px; }
    }
    .span1{
        font-weight: 700;
    }
    .mains{
        display: flex;
    }