body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    color: #1a1a1a;
  }
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.1);
  }

  nav .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav .logo img {
    height: 100px;
    width: 100px;
    margin-bottom: 0.3rem;
  }

  nav .dropdown {
    display: none;
  }
  nav .menu {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
  }

  nav .menu a {
    text-decoration: none;
    color: #1d3c34;
  }

  nav .menu a:hover {
    color: #7fb77e;
  }

  .hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 57%, rgb(228 228 228 / 63%) 100%)
  }

  .hero-text {
    max-width: 650px;
    margin: 0 auto;
    text-align: -webkit-center;      
  }

  .hero-text h1 {
    font-size: 3.25rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: serif;
    color: #1d3c34;
  }

  .hero-text h1 span {
    display: block;
    color: #1d3c34;
  }

  .hero-text p {
    color: #4a635d;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }

  .hero-text a {
    background-color: #1d3c34;
    color: white;
    padding: 0.9rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
    display: inline-block;
  }

  .hero-text a:hover {
    background-color: #154d41;
  }

  .hero-image img {
    width: 100%;
    max-width: 340px;
    margin: 2rem auto;
  }

  @media (min-width: 768px) {
    .hero {
      flex-direction: row;
      text-align: left;
      padding: 5rem 7rem;
    }

    .hero-text {
      max-width: 50%;
      margin: 0;
    }

    .hero-image {
      max-width: 50%;
      display: flex;
      justify-content: center;
    }

    .hero-image img {
      margin: 0;
    }

    nav .logo {
      flex-direction: row;
      align-items: center;
    }

    nav .logo span {
      margin-left: 0.5rem;
      font-size: 1.25rem;
      line-height: 1.2;
    }

    nav .logo span span {
      font-size: 0.875rem;
      font-weight: 300;
      display: block;
    }
  }

  .how-it-works-wrapper {
    font-family: 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #e6f2fa, #ffffff);
    margin: 0;
    padding: 2rem 1rem;      
  }
  
  .container-how-it-works {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease;
  }

  .section-title-how-it-works {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
  }
  .section-title-how-it-works-cta {
    text-align: center;
    font-size: 2rem;
    margin-top: 3rem;
    color: #1a1a1a;
    position: relative;
  }

  .section-title-how-it-works::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #1f73d1;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  .steps-grid-how-it-works {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .step-how-it-works {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f9fbfc;
  }

  .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(31, 115, 209, 0.15);
  }

  .step-how-it-works img {
    max-width: 200px;
    margin-bottom: 1rem;
  }

  .step-how-it-works h3 {
    font-size: 1.3rem;
    color: #1f73d1;
    margin-bottom: 0.5rem;
  }

  .step-how-it-works p {
    font-size: 1rem;
    color: #333;
    padding: 0 0.5rem;
  }


  @media (min-width: 768px) {
    .steps-grid-how-it-works {
      grid-template-columns: repeat(3, 1fr);
    }

    .step-how-it-works p {
      padding: 0 1rem;
    }
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .section-included-wrapper {
    font-family: 'Helvetica Neue', sans-serif;
    background: linear-gradient(to bottom, #f0f8ff, #ffffff);
    margin: 0;
    padding: 2rem 1rem;
    color: #333;
  }
  .included-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }

  .included-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    position: relative;
  }

  .included-wrapper h2::after, .pricing-section h2::after, .faq-section h2::after, .about-section h1::after, .referral-container h1::after, .banner h2::after  {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #1f73d1;
    margin: 10px auto 0;
    border-radius: 4px;
  }

  .included-images {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem; */
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-evenly;      
  }

  .included-images img {
    /* width: 100%;
    border-radius: 12px;
    object-fit: cover; */
    width: 30%;
    border-radius: 12px;
    object-fit: cover;      
  }

  .included-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 0;
  }

  .included-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 1 300px;
    max-width: 350px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    place-content: center;
  }

  .included-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(31, 115, 209, 0.15);
  }

  .included-icon {
    font-size: 2rem;
    color: #1f73d1;
    flex-shrink: 0;
  }

  .included-text {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .included-cards {
      flex-direction: column;
      align-items: center;
    }
  }
  .section-wcu-wrapper {
    background: #f8faff;
  }
  .section-wcu {
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: auto;
    text-align: center;
  }

  .section-wcu h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #111;
  }

  .why-choose-us-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0;
    list-style: none;
    margin: 0;
  }

  .why-choose-us-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.2s ease;
  }

  .why-choose-us-item:hover {
    transform: translateY(-5px);
  }

  .icon {
    font-size: 1.5rem;
    color: #4CAF50;
    flex-shrink: 0;
  }

  .text {
    text-align: left;
    font-size: 1rem;
    line-height: 1.5;
  }

  @media (max-width: 600px) {
    .section-wcu h2 {
      font-size: 1.5rem;
    }
  }
  .pricing-section {
    padding: 2rem 1rem;
    max-width: 960px;
    margin: auto;
    text-align: center;
  }
  .pricing-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }
  .pricing-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #333;
  }
  p.plan-notice {
    font-style: italic;
    margin-top: 5px;
    font-size: 15px
  }
  p.plan-text {
    margin-bottom: 0 !important;
  }        
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
  }
  table, th, td {
    border: 1px solid #ccc;
  }
  th, td {
    padding: 1rem;
    text-align: center;
  }
  th {
    font-weight: 700;
  }
  .btn {
    background-color: #0a2c47;
    color: #fff;
    font-weight: bold;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
  }
  .faq-container {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(240,248,255,1) 100%);
  }
  .faq-section {
    padding: 2rem 1rem;
    max-width: 960px;
    margin: auto;
    text-align: left;
  }
  .faq-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .faq-item {
    margin-bottom: 1.5rem;
  }
  .faq-item h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  .faq-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
  }
  .weight-loss-that-works-container {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #e6f2fa;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;      
  }
  .weight-loss-that-works {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
  }
  .logo-weight-loss-that-works {
    width: 80px;
    margin-bottom: 1rem;
  }
  .weight-loss-that-works h1 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
  }
  .weight-loss-that-works p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 2rem;
  }
  .btn-weight-loss-that-works {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 1rem;
  }
  .btn-primary {
    background-color: #1f73d1;
    color: white;
  }
  .btn-secondary {
    background-color: white;
    border: 2px solid #1f73d1;
    color: #1f73d1;
  }
  .referral-wrapper {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7faff;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
  }
  .referral-container {
    width: 90%;
    max-width: 800px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  .referral-container h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f73d1;
  }
  .referral-container p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
  .appreciation-offer {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
  }
  .highlight {
    font-weight: bold;
    color: #1f73d1;
  }
  .btn-referral-container {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    background-color: #1f73d1;
    color: #fff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  .btn-referral-container:hover {
    background-color: #155bb5;
  }
  .about-section {
    max-width: 960px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }
  .about-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f73d1;
    text-align: center;
  }
  .about-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
  .about-highlight {
    background-color: #e6f2ff;
    padding: 1.25rem 1.5rem;
    border-left: 5px solid #1f73d1;
    margin-bottom: 2rem;
    border-radius: 8px;
    font-style: italic;
  }

  .about-highlight-two {
    padding: 1.25rem 1.5rem;
    font-style: italic;  
    font-size: 14px;
    margin-bottom: 1rem;
    margin-top: 0;
    text-align: center;
    padding-top: 0;          
  }
  .about-highlight-three {
    padding: 1.25rem 1.5rem;
    font-style: italic;  
    font-size: 23px;
    margin-bottom: 1rem;
    margin-top: -10px;
    text-align: center;
    padding-top: 0;          
  }
  .about-cta {
    text-align: center;
    margin-top: 2.5rem;
  }
  .btn-about-section {
    background-color: #1f73d1;
    color: #fff;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  .btn-about-section:hover {
    background-color: #155bb5;
  }
  .health-section-wrapper {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff;
    color: #1a1a1a;
    line-height: 1.6;
    padding: 10px;
  }
  .health-section {
    max-width: 960px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, #ffffff, #f2f9ff);
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  }
  .health-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1f73d1;
    position: relative;
    margin-top: 0;
  }
  .health-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #1f73d1;
    margin: 0.5rem auto 0;
    border-radius: 2px;
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .benefit {
    background-color: #eaf3ff;
    padding: 1.5rem;
    border-left: 5px solid #1f73d1;
    border-radius: 10px;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .benefit:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(31, 115, 209, 0.15);
  }
  .benefit-icon {
    font-size: 1.5rem;
    color: #1f73d1;
    flex-shrink: 0;
  }
  .benefit-text {
    flex: 1;
  }
  .image-section {
    max-width: 960px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
  }
  .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  .image-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }
  .image-box img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
  }
  .text-box {
    padding: 1rem 1.25rem;
  }
  .text-box h3 {
    margin: 0.5rem 0;
    font-size: 1.25rem;
    color: #1f73d1;
  }
  .text-box p {
    font-size: 1rem;
    color: #444;
  }
  @media (max-width: 480px) {
    .image-section {
      padding: 1.25rem 1rem;
    }
    .text-box h3 {
      font-size: 1.15rem;
    }
    .text-box p {
      font-size: 0.95rem;
    }
  }    
  @media (max-width: 480px) {
    .health-section h2 {
      font-size: 1.75rem;
    }
    .benefit {
      font-size: 0.95rem;
      flex-direction: row;
    }
  }    

  /* Responsive Tweaks */
  @media (max-width: 768px) {
    .about-section {
      padding: 2rem 1.25rem;
      margin: 2rem 1rem;
    }
    .about-section h1 {
      font-size: 2rem;
    }
    .about-section p {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .about-section h1 {
      font-size: 1.5rem;
    }
    .btn-about-section {
      width: 100%;
      padding: 1rem;
    }
  }    
  @media (max-width: 600px) {
    nav .menu {
      display: none;  
    }
    nav .dropdown {
      display: flex;
    }      
    .hero-text h1 {
      font-size: 2rem;
    }
    .included-card {
      width: -webkit-fill-available;
      flex: 1 1 100px;
    }
    .section-included-wrapper {
      padding: 0;
    }
    .about-highlight-three {
      font-size: 21px;
    }
    .included-cards {
      margin-top: 30px;
      margin-bottom: 0;
    }
    .included-images {
      flex-direction: column;
      align-items: center;
      margin-bottom: 10px;
    }
    .about-highlight-two {
      padding: 0;
      margin-bottom: 0;
      font-size: 12px;
    }      
    .included-images img {
      width: 80%;
      padding: 20px;
      border-radius: 25px;
    }
    .pricing-section h2 {
      margin-top: 0;
    }
    .referral-container h1 {
      font-size: 1.5rem;
    }
    .referral-container p {
      font-size: 1rem;
    }
    .btn-referral-container {
      width: 80%;
      padding: 1rem;
    }
    .appreciation-offer {
      min-height: 50vh;
      padding: 20px;
    }
    .referral-wrapper {
      min-height: 70vh;
      padding: 20px;
    }
    .weight-loss-that-works-container {
      min-height: 70vh;
      padding: 20px;
    }
  }    
  
  @media (min-width: 600px) {
    .weight-loss-that-works {
      max-width: 500px;
    }
  }
  @media (max-width: 600px) {
    .faq-section {
      padding: 2rem 1rem;
    }
  }    
  @media (max-width: 600px) {
    th, td {
      padding: 0.75rem;
    }
    .btn {
      width: 80%;
    }
  }     
  footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  max-width: 800px;
  margin: auto;
  padding: 0 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-grid img {
  max-width: 25%;
  height: auto;
  display: block;
  margin: auto;
}

.footer-text {
  margin: 5px 0;
}

.footer-social a {
  margin: 0 10px;
  text-decoration: none;
  font-size: 1.2em;
  color: #333;
}

.footer-social a:hover {
  color: #007bff;
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-text {
    font-size: 14px;
  }

  .footer-social a {
    margin: 0 8px;
    font-size: 1em;
  }
}   

.appreciation-offer .banner {
    background-color: #e0f2ff;
    color: #1e3a5f;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
  }

  .appreciation-offer .banner h2 {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
  }

  .appreciation-offer .banner p {
    font-size: 1em;
    margin-bottom: 10px;
    text-align: center;
  }

  .appreciation-offer .banner p.highlight {
    font-weight: bold;
    color: #0f2e4f;
  }

  @media (min-width: 768px) {
    .appreciation-offer .banner h2 {
      font-size: 2em;
    }

    .appreciation-offer .banner p {
      font-size: 1.1em;
    }
  }

  .menu-drop-down-wrapper {
      height: 100%;
      font-family: 'Arial', sans-serif;        
  }

  .menu-drop-down-container {
    height: 100vh;
    width: 100vw;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100;      
  }

  .menu-drop-down {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    height: 80%;
  }

  .menu-drop-down a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #333;
    transition: color 0.3s ease;
  }

  .menu-drop-down a:hover {
    color: #0077cc;
  }    
