/* ================== CTABox ================== */
.mah-cta-box {
    padding: 20px;
    background-color: #f1f5ff;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    text-align: center;
    margin: 20px 0;
  }
  
  .mah-cta-title {
    font-size: 19.2px;
    margin-bottom: 10px;
  }
  
  .mah-cta-message {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .mah-cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2b6cb0;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    max-width: 100%;
    word-break: break-word;
    text-align: center;
  }



  /* ================== Sticky CTA Bar ================== */
.mah-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
    z-index: 10000;
  }
  
  .mah-sticky-cta-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 1px 1px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .mah-sticky-cta .mah-cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2b6cb0;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
  }
  
  .mah-sticky-cta .mah-cta-button:hover {
    background-color: #1a4f8b;
  }


  @media (max-width: 768px) {
  .mah-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    padding: 6px 10px;
  }

  .mah-sticky-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .mah-sticky-cta .mah-cta-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    color: #2b6cb0;
    font-size: 17px;
    font-weight: 500;
    border-radius: 0;
    text-decoration: none;
    line-height: 1.2;
    border: 1px solid #eceff1;
    padding: 5px 1px;
  }

  .mah-sticky-cta .mah-cta-button:hover {
    background-color: #ebf8ff;
  }

  /*body {
    padding-bottom: 60px; /* prevents content from being hidden */
/*   } */
  
}