.new-hero {
    background: #f8f9fa; /* Light clean background */
    /* padding: 0 20px 0; */
    text-align: center;
    border-radius: 0 0 8px 8px;
  }
  .hero-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .hero-image {
    flex: 1 1 300px;
    /* padding: 10px; */
    width: 100%;
  }
  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
  }
  .hero-content {
    flex: 1 1 400px;
    padding: 20px;
    text-align: left;
  }
  .hero-badge {
    background-color: #d90000; /* Urgency Red */
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 0.9em;
    display: inline-block;
    margin-bottom: 10px;
  }
  .hero-headline {
    font-size: 2.2em;
    line-height: 1.2;
    color: #333;
    margin-bottom: 15px;
    font-weight: 800;
  }
  .hero-subhead {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
  }
  .hero-cta {
    background-color: #28a745; /* Action Green */
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
  }
  .hero-cta:hover {
    background-color: #218838;
  }
  /* Mobile tweak */
  @media(max-width: 768px) {
    .hero-content { text-align: center; }
  } 

   .offer-stack {
    border: 2px dashed #ccc;
    background: #fff;
    padding: 20px;
    margin-top: 25px;
    max-width: 600px;
    border-radius: 10px;
  }
  .stack-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  .stack-item.total {
    border-top: 2px solid #333;
    border-bottom: none;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 10px;
    padding-top: 15px;
  }
  .free-tag { 
    color: #d90000;
    font-weight: bold;
  }
  .strike {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
  }


   .science-container {
    background: #f0f8ff; /* Light clinical blue */
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 25px;
  }
  .science-headline {
    font-size: 1.8em;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 30px;
  }
  .comparison-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
  }
  .comp-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex: 1 1 300px;
    text-align: left;
    position: relative;
  }
  .comp-card.bad { border-bottom: 5px solid #e74c3c; }
  .comp-card.good { border-bottom: 5px solid #27ae60; border: 2px solid #27ae60; }
 
  .chart-bar-bg {
    background: #eee;
    height: 25px;
    border-radius: 15px;
    margin: 15px 0;
    overflow: hidden;
  }
  .chart-bar-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
    font-size: 0.8em;
    font-weight: bold;
    padding-right: 10px;
  }
  .fill-bad { width: 15%; background: #e74c3c; } /* 15% Absorption */
  .fill-good { width: 95%; background: #27ae60; } /* 95% Absorption */
 
  .badge-best {
    position: absolute;
    top: -15px;
    right: 15px;
    background: #27ae60;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
  } 
  .custom-class2{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }