:root {
    /* 🎨 Colors */
    --color-primary: #d05534;
    --color-secondary: #FDF3D8;
    --color-tertiary: #5aae76;
    --color-alternate: #F6BF9D;
  
    --color-primary-text: #fdf3d8;
    --color-secondary-text: #033f4c;
    --color-primary-bg: #033f4c;
    --color-secondary-bg: #FDF3D8;
  
    --color-accent-1: #b3ddd7;
    --color-accent-2: #467f7b;
    --color-accent-3: #56747a;
    --color-accent-4: #9cc3a1;
  
    /* 🖋️ Fonts */
    --font-primary: "Tilt Warp", cursive;
    --font-secondary: "Mulish", sans-serif;
  }





/* ───────────────────────────────────
Base styles
─────────────────────────────────── */

body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font-secondary, "Mulish", sans-serif);
    background: var(--color-primary-bg, #033f4c);
    color: var(--color-primary-text, #fdf3d8);
}

/* default: no forced break, spans collapse */
/* .break-lg { display: block; }  */
  
/* utility */
.container {
    width: 92%;
    max-width: 640px;      /* stops stretching on very wide phones */
    margin-inline: auto;
}

/* sticky footer */
/* Flex container for the full page */
.page-container {
  background-color: var(--color-secondary-background, #FDF3D8);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main content grows to fill space */
.page-content {
  flex: 1;
}
/* end sticky footer */

.sign-in-header { display: none;}

.body-bold {
  font-weight: bold;
}

.centered-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
}

/* ───────────────────────────────────
Small tablets ≥640 px  (≈ Tailwind sm)
─────────────────────────────────── */
@media screen and (min-width: 640px) {
    .container { max-width: 768px; }

    h1 { font-size: 1.75rem; }
    nav a { font-size: 1rem; }
    .sign-in-header { display: inline;}
}

/* ───────────────────────────────────
    Tablets ≥768 px         (≈ Tailwind md)
    ─────────────────────────────────── */
@media screen and (min-width: 768px) {
    .container { max-width: 1024px; }


    h1 { font-size: 2rem; }
    .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .site-header-alt {
        display: none;
    }
}

/* ───────────────────────────────────
    Laptops ≥1024 px        (≈ Tailwind lg)
    ─────────────────────────────────── */
@media screen and (min-width: 1024px) {
    .container { max-width: 1280px; }

    h1 { font-size: 2.25rem; }

    /*  header layout swap */
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* ───────────────────────────────────
    Desktops ≥1280 px       (≈ Tailwind xl)
    ─────────────────────────────────── */
@media screen and (min-width: 1280px) {
    .container { max-width: 1536px; }

    h1 { font-size: 2.5rem; }
}

/* ───────────────────────────────────
    Large desktops ≥1536 px (≈ Tailwind 2xl)
    ─────────────────────────────────── */
@media screen and (min-width: 1536px) {
    .container { max-width: 1760px; }

    h1 { font-size: 2.75rem; }
}

/* For small screens only  */
@media (max-width:640px) {
  ul {
    padding-left: 15px;
  }
  
}

  /* ---------- Promo Banner ---------- */
    .promo-banner {
        background: var(--color-tertiary, #56747a);
        color: var(--color-primary-text, #fdf3d8);
        font-family: var(--font-secondary, "Mulish", sans-serif);
        font-size: 1.1rem;      /* slightly larger */
        text-align: center;
        padding: 0.75rem 1rem;
        line-height: 1.3;
    }
    
    /* make the emoji pop but keep it inline */
    .promo-banner .money-emoji {
        margin-right: 0.4ch;
        font-size: 1.1rem;
        vertical-align: -0.05em; /* fine-tune baseline */
    }
    /* ---------- End Promo Banner ---------- */

 /* ---------- Feature Section ---------- */
.feature-section {
    background: var(--color-primary-bg, #033f4c);
    color: var(--color-primary-text, #fdf3d8);
    font-family: var(--font-secondary, "Mulish", sans-serif);
    /* give the block some breathing room and height for the image */
  }
  
  /* wrapper that switches layout */
  .feature-inner {
    display: flex;
    flex-direction: column;           /* mobile first: stack vertically */
    align-items: left;            
    gap: 2rem;
    height: 100%;
  }
  
  /* text block */
  .feature-content {
    max-width: 36rem;
    text-align: left;
  }
  
  /* image defaults */
  .feature-image {
    width: 100%;
    height: 250px;
    border-radius: 8px;               /* optional */
    object-fit: cover;                /* crop to fill when tall */
    object-position: 50% -70px;
  }
  
  /* ---------- ≥800 px: image right, text vertically centred ---------- */
  @media (min-width: 800px) {
    .feature-section {
      height:700px;
      overflow: hidden;

    }

    .feature-inner {
      flex-direction: row-reverse;    /* image right, text left */
      align-items: left;            /* vertical centring */
      justify-content: left;      /* horizontal centring of text block */
    }
  
    .feature-image {
        margin-left: auto;       /* pushes the image to the right  */
        flex: 0 0 45%;              /* max one-third of viewport width */
        height: 100%;                   /* fill entire section height */
        width: auto;                     /* let flexbox control width */
        max-width: 45vw;             /* never exceed 1/3 viewport */
        object-position: center;
    }
    
    .feature-content {
        flex: 1 1 auto;
        margin: auto;
    }
  }

    /* Readjust image */
  @media (min-width: 625px) and (max-width: 799px) {
    .feature-image {
      object-position: 50% -150px;
    }
  }


  /* -------- Content hierarchy -------- */
.feature-content-cta {
    background: var(--color-primary-bg, #033f4c);
    color: var(--color-primary-text, #FDF3D8);
    margin-left:2rem;
}


.feature-headline {
    width:90%;
    font-family: var(--font-secondary, "Mulish", sans-serif);
    font-size: 1.7rem;
    line-height: 1.2;
    /* padding-right: 1rem; */
    margin: 0.5rem 0 0.75rem;
  }
  
  .feature-headline .emphasized {
    font-weight: 700;
    text-decoration: underline;
  }

  
  .subhead {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    max-width: 32rem;
    line-height: 1.45;
  }

  .subhead .bold{
    font-weight: 700;
  }

  .subhead .opacity {
    opacity: 0.7;
  }
  
  /* ---- CTA embedded box ----- */
  .cta-box {
    background: var(--color-primary-bg, #033f4c);
    color: var(--color-primary-text, #FDF3D8);
    padding: 1rem;
    /* border-radius: 10px; */
    max-width: 400px;
    margin-bottom: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left:1rem;
  }

  .cta-image-container {
    position: relative;
    display: inline-block;
    max-width: 200px;
  }
  
  .cta-image-container img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .cta-image-text {
    position: absolute;
    font-family: var(-font-secondary, "Mulish", sans-serif);
    top: 50%; /* center vertically */
    left: 50%; /* center horizontally */
    transform: translate(-50%, -50%);
    color: var(--color-primary-text, #fdf3d8);
    /* padding: 0.5rem 1rem; */
    /* border-radius: 8px; */
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    font-weight: 400;
  }

  .app-promo-widget-feature{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    flex-wrap: wrap;
  }
  
  .app-promo-widget-badge-feature {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
  }
  
  /* .cta-lead {
    font-weight: 700;
    margin: 0 0 1rem;
    display:none;
  } */
  
  /* Primary button */
  /* .btn-primary {
    display: inline-block;
    font-family: var(--font-primary, 'Tilt Warp', cursive);
    background: var(--color-primary, #d05534);
    color: var(--color-primary-text, #fdf3d8);
    font-weight: 800;
    font-size: 1rem;
    padding: 0.75rem 0.2rem;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.25s ease;
    width: 120px;
  }
  
  .btn-primary:hover {
    background: #b94629; /* slightly darker on hover */
  /* } */ */

  
  /* Accent-3 alt link */
  .cta-alt {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary-text,#fdf3d8);
    opacity: 0.7;
    font-size: 0.8rem;
  }

  .cta-alt p {
    font-size: 0.8rem;
    opacity: 0.7;
  }
  
  .cta-alt a {
    color: inherit;
    text-decoration: underline;
    font-weight: 400;
  }
  
  /* Logo at top of content */
  .content-logo {
    max-width: 100px;
    height: auto;
  }

  /* @media (min-width: 800px) {
    .feature-headline {
      font-size: 1.4rem;
    }

    .subhead p {
      font-size: 0.85rem;
    }


    .feature-content-cta {
      margin-left: 4rem;
      padding-right: 30px;
    }

    .cta-box {
      margin-left:2.5rem;
      /* max-width: 400px; */
    /* } */
  /* } */


  @media (min-width: 800px) {
    .feature-content-cta {
        margin-left: 4rem;
        padding-right: 30px;
    }

    .feature-headline {
        font-size: 2.2rem;
      }

    .subhead {
        font-size: 0.95rem;
      }


    .cta-box {
        margin-left:2.7rem;
        max-width: 600px;
        padding-right:0px;
      }

      .cta-lead {
        font-weight: 700;
        margin: 0 0 0.1rem;
        display:block;
      }

      .app-promo-widget-badge-feature {
        height: 50px;
        width: auto;
        max-width: 200px;
        object-fit: contain;
      }


  }

  /* ---------- End Feature Section ---------- */



  /* ----- Benefits Section ----- */
.benefits-section {
    background: var(--color-secondary-bg, #FDF3D8);
    color: var(--color-secondary-text, #033f4c);
    font-family: var(--font-secondary, "Mulish", sans-serif);
    padding: 4rem 1.5rem;
    text-align: center;
  }
  
  .benefits-inner {
    width:90%;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .benefits-title {
    font-family: var(--font-primary, "Tilt Warp", cursive);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    font-weight: 400;
  }
  
  .benefits-subtext {
    font-size: 0.9rem;
    max-width: 400px;
    margin: 0 auto 2rem;
  }
  
  .habit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* column-gap: 0.2rem;  */
    row-gap: 1rem;
    max-width: 84%;     
    margin: 0 auto;
    justify-content: center;
    padding-left: 10%;
  }
  
  .habit-item {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 0.65rem;
    max-width: 300px;
  }

  .habit-label {
    /* display: flex; */
    /* align-items: baseline;   aligns superscript with text base */
    gap: 0.25rem;             /* space between text and superscript */
  }
  
  .habit-text {
    font-size: 0.85rem;
    font-weight: 400;
  }

  .habit-strong {
    font-weight: 700;
  }

  
  .habit-icon {
    display: block;
    width: 22px;
    height: 22px;
    margin-bottom: -4px;
    /* flex-shrink: 0;  */
  }
  
  .habit-item sup a {
    font-size: 0.7em;
    text-decoration: underline;
    color: inherit;
  }
  
  .benefits-closing {
    font-size: 0.9rem;
    margin: 2rem 0 1.5rem;
  }
  
  .btn-primary {
    display: inline-block;
    font-family: var(--font-primary, 'Tilt Warp', cursive);
    background: var(--color-primary, #DC7E5D);
    color: var(--color-primary-text, #fdf3d8);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 24px;
    text-decoration: none;
    opacity: 0.8;
    transition: background 0.25s ease;
  }
  
  .btn-primary:hover {
    background: #b94629;
  }
  
  .no-cost-note {
    font-size: 0.8rem;
    margin-top: 1rem;
    color: var(--color-secondary-text, #033f4c);
  }

  @media (max-width: 445px) {
    .habit-grid {
      grid-template-columns: 1fr;
      padding-left: 16%;
    }

  }

  
  /* Responsive: Stack habit grid on smaller screens */
  @media (min-width: 445px) and (max-width: 640px) {

    .benefits-title {
      font-size: 1.2rem;
    }

    .benefits-subtext {
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }

    .habit-strong {
      font-size: 0.9rem;
    }

    .habit-text {
      font-size: 0.9rem;
    }

    .habit-grid {
      grid-template-columns: 1fr;
      padding-left: 25%;

    }


      .benefits-closing {
        font-size: 0.9rem;
      }

      .no-cost-note {
        font-size: 0.8rem;
        margin-top: 1rem;
        color: var(--color-secondary-text, #033f4c);
      }


  }

    /* ----- End Benefits Section ----- */


    /* --- Progress Section --- */
.progress-section {
    background: var(--color-primary-background, #033f4c);
    color: var(--color-primary-text, #fdf3d8);
    font-family: var(--font-secondary, "Mulish", sans-serif);
    padding: 4rem 1.5rem;
    text-align: center;
  }
  
  .progress-inner {
    width:90%;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* --- Title --- */
  .progress-title {
    font-family: var(--font-primary, "Tilt Warp", cursive);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
  }
  
  /* --- Grid of progress items --- */
  .progress-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .progress-item {
    width: 300px;
    height: 170px;
    text-align: center;
    background-color: var(--color-secondary-bg, #FDF3D8);
    border-radius: 12px;
    margin-bottom: 3rem;
  }

  .progress-item-slider-container {
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin-left: 7%;
    text-align: left;
  }

  .progress-item-slider-title {
    font-size: 16px;
    font-family: var(--font-primary, "Tilt Warp", cursive);
    font-weight: 400;
    margin-top: 2%;
    color: var(--color-secondary-text, #033f4c);
  }

  .progress-image-slider {
    width: 85%;
    height: auto;
    background-color: var(--color-secondary-bg, #FDF3D8);
    border-radius: 10px;
  }

  .progress-item-slider-under {
    font-size: 12px;
    font-family: var(--font-secondary, "Mulish", sans-serif);
    font-weight: 400;
    margin-top: 0.5rem;
    color: var(--color-secondary-text, #033f4c);
    text-decoration: underline;
  }

  
  .progress-image {
    width: 250px;
    height: 124px;
    margin: 1.25rem;
    border-radius: 12px;
  }
  
  .progress-caption {
    font-size: 0.9rem;

  }

  .progress-bold {
    font-weight: 800;

  }
  
  /* --- Button --- */
  .btn-tertiary {
    display: inline-block;
    font-family: var(--font-primary, 'Tilt Warp', cursive);
    background: var(--color-tertiary, #5aae76);
    color: var(--color-primary-text, #fdf3d8);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.75rem;
    border-radius: 24px;
    text-decoration: none;
    transition: background 0.25s ease;
  }
  
  .btn-tertiary:hover {
    background: #4a9968; /* slightly darker hover color */
  }
  
  /* --- Small supporting note --- */
  .progress-note {
    font-size: 0.8rem;
    margin-top: 1rem;
    color: var(--color-primary-text, #fdf3d8);
  }

  @media (max-width: 640px) {

    .progress-title {
      font-size: 1.2rem;
    }

    .progress-item-slider-under {
      font-size: 0.9rem;
    }

    .progress-caption {
      font-size: 0.85rem;
  
    }



  }

   /* ----- End Progress Section ----- */

  /* --- Article Section --- */
.article-section {
    background: var(--color-accent-3, #56747a);
    color: var(--color-primary-text, #fdf3d8);
    font-family: var(--font-secondary, "Mulish", sans-serif);
    padding: 4rem 1.5rem;
    text-align: center;
  }
  
  .article-inner {
    width:90%;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* --- Title --- */
  .article-title {
    font-family: var(--font-primary, "Tilt Warp", cursive);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 4rem;
  }
  
  /* --- Grid of article items --- */
  .article-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .article-item {
    position: relative;
    text-decoration: none;
    width: 250px;
    height: 250px;
    text-align: center;
    background-color: var(--color-secondary-bg, #FDF3D8);
    border-radius: 12px;
    margin-bottom: 2rem;
  }

  .article-item-slider-container {
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: center;
  }

  .article-item-slider-title {
    width: 80%;
    font-size: 16px;
    font-family: var(--font-secondary, "Mulish", sans-serif);
    font-weight: 700;
    margin: 20% auto 5%;
    color: var(--color-secondary-text, #033f4c);
  }

  .article-image-slider {
    width: 70%;
    height: auto;
    background-color: var(--color-secondary-bg, #FDF3D8);
    border-radius: 10px;
    margin: 0 auto;
  }
  
  .article-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  
  .article-caption {
    font-size: 0.9rem;

  }

  .article-bold {
    font-weight: 800;

  }

  .article-underline {
    text-decoration: underline;
  }

  /* --- Overlay --- */
  .article-item-upper-container {
    position: absolute;
    top:-25px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 50px;
    background-color: var(--color-secondary-bg, #FDF3D8);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .article-item-upper-inner {
    width: 90%;
    height: 80%;
    background-color: var(--color-accent-2, #467f7b);
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .article-item-upper-inner-text {
    font-size: 1rem;
    font-family: var(--font-primary, "Tilt Warp", cursive);
    color: var(--color-primary-text, #fdf3d8);
    font-weight: 400;
  }

  /* --- Overlay End --- */

  /* --- END ARTICLE SECTION--- */

   /* ----- Info Secton ----- */

   .info-section {
    background-color: var(--color-secondary-background, #FDF3D8);
    color: var(--color-secondary-text, #033f4c);
    padding: 4rem 0;
    text-align: center;
    font-family: var(--font-secondary, 'Muli', sans-serif);
  }
  
  .info-inner {
    margin: 0 auto;
  }
  
  .info-title {
    font-family: var(--font-primary, 'Tilt Warp', cursive);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
  }
  
  /* Carousel Styles */
    .carousel-wrapper {
        position: relative;
        max-width: 700px;
        width: 100%;
        margin: 0 auto 2rem;
        overflow: hidden;
    }

    
    .carousel-single {
        display: flex;
        transition: transform 1s ease-in-out;
        gap: 16px; /* Space between items;*/
        user-select: none;
        -webkit-user-drag: none;
        -webkit-touch-callout: none;
    }
    
    .carousel-item {
        flex: 0 0 50%;
        display: flex;
        transition: opacity 0.3s ease;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border: 0.5px solid black;
        border-radius: 20px; /* optional: rounded corners */
        padding: 1rem;       /* for breathing room inside */
        box-sizing: border-box;
        transition: opacity 0.5s ease;
        user-select: none;
    }

    .carousel-image-container {
        padding: 10px;
        border-radius: 50%;
        margin-top: 1.5rem;
    }

    .carousel-image-wrapper {
        width: 85px;
        height: 85px;
        border-radius: 50%;
        overflow: hidden;
        box-sizing: border-box;
      }
    
    .carousel-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #c-img-1 {
        background-color: #b3ddd7;
    }

    #c-img-2 {
        background-color: #033f4c;
    }

    #c-img-3 {
        background-color: #f6bf9d;
    }

    #c-img-4 {
        background-color: #c7deca;
    }

    #c-img-5 {
        background-color: #9cc3a1;
    }

    #c-img-6 {
        background-color: #56747a;
    }
    
    .carousel-text {
        width:80%;
        font-size: 1rem;
        padding-top: 15px;
        padding-bottom: 25px;
    }

    .carousel-bold {
        font-weight: 700;
    }

    /* Responsive: Smaller image and text on smaller screens */
  @media (max-width: 640px) {

    .info-title {
      font-size: 1.2rem;
    }

    .carousel-image-wrapper {
      width: 55px;
      height: 55px;
    }

    .carousel-item {
      /* flex: 0 0 50%; */
      padding: 0.5rem; /* Less padding */
    }

    .carousel-text {
      width:80%;
      font-size: 0.8rem;
    }

  }
    
    /* Fade effects */
    .carousel-fade {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 4rem;
        z-index: 2;
        pointer-events: none;
    }

    .carousel-fade.left {
        left: 0;
        background: linear-gradient(to right, #fdf3d8 0%, transparent 100%);
      }
    
    .carousel-fade.right {
        right: 0;
        left: auto;
        background: linear-gradient(to left, #fdf3d8 0%, transparent 100%);
    }

  
  /* Button */
  /* .btn-primary {
    display: inline-block;
    font-family: var(--font-primary, 'Tilt Warp', cursive);
    background: var(--color-primary, #d05534);
    color: var(--color-primary-text, #fdf3d8);
    font-weight: 800;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s ease;
  }
  
  .btn-primary:hover {
    background: #b04329;
  } */
  
  /* Note text */
  .info-note {
    font-size: 0.85rem;
    margin-top: 0.75rem;
  }

  

  /* ----- End Info Secton ----- */

   /* ------------ Legal Section Layout------------- */
   .custom-section {
    background-color: var(--color-secondary-background, #FDF3D8);
    padding: 4rem 1.5rem;
    text-align: center;
    color: var(--color-secondary-text, #033f4c);
    font-family: var(--font-secondary, 'Mulish', sans-serif);
    font-size: 0.85rem;
  }
  
  .custom-inner {
    max-width: 700px;
    width:90%;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .custom-title {
    font-size: 1.5rem;
    /* margin-bottom: 1.5rem; */
  }

  .custom-subtitle {
    font-size: 0.85rem;
    margin-bottom: 2rem;
    font-style: italic;
  }

  .custom-body {
    font-size: 0.85rem;
    text-align: left;
  }

  .custom-body h1,
  .custom-body h2,
  .custom-body h3,
  .custom-body h5 {
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
  }

  .custom-body h4 {
    margin-bottom: 0.5rem;
    margin-top: 2.5rem;
  }

  .custom-sub-head {
    font-weight: 700;
    font-size: 0.9rem;
  }

  .custom-body p {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

  .custom-body ul,
  .custom-body li {
    margin-top: 0;
    margin-bottom: 0.2rem;
  }

  #service-title {
    margin-top: 3rem;
    font-size: 1rem;
    text-align: center;
  }

  .custom-body h4 {
    font-size: 1rem;
    text-align: left;
  }

  .custom-body h5 {
    font-size: 0.9rem;
    text-align: left;
  }

  .custom-body a {
    font-size: 0.85rem;
    font-weight: bold;
    text-decoration: underline;
    color: var(--color-secondary-text, #033f4c);
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  @media (max-width: 640px) {
    .custom-title {
      font-size: 1.3rem;
    }
  }


  /* ------------ End Legal Section Layout ------------- */

  /* ------------ Info Section Layout------------- */
    .custom-info-section {
      background-color: var(--color-secondary-background, #FDF3D8);
      padding: 4rem 1.5rem;
      text-align: center;
      color: var(--color-secondary-text, #033f4c);
      font-family: var(--font-secondary, 'Mulish', sans-serif);
      font-size: 0.85rem;
      line-height: 1.5;
    }
    
    .custom-info-inner {
      max-width: 600px;
      margin: 0 auto;
      padding:0 1rem;
    }

    .custom-info-graphic {
      position: relative;
      max-width: 1131; 
      padding-top: 168.43%; /* 16:9 aspect ratio */
      border-radius: 8px;
      
    }

    .custom-info-graphic img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
      outline: 1px solid var(--color-primary-bg, #033f4c);
    }
    
    .custom-info-title {
      font-size: 1.5rem;
      /* margin-bottom: 1.5rem; */
    }
  
    .custom-info-subtitle {
      font-size: 0.85rem;
      margin-bottom: 2rem;
      font-style: italic;
    }
  
    .custom-info-body {
      font-size: 0.85rem;
      text-align: left;
    }
  
    .custom-info-body h1,
    .custom-info-body h2,
    .custom-info-body h3,
    .custom-info-body h4,
    .custom-info-body h5 {
      margin-top: 1.5rem;
      margin-bottom: 1rem;
      
    }

  
    .custom-info-body p {
      margin-top: 0.5rem;
      margin-bottom: 0.5rem;
    }
  
    /* .custom-info-body ul,
    .custom-info-body li {
      margin-top: 0.2rem;
      margin-bottom: 0.2rem;
    } */

    .custom-info-body h1 {
      font-family: var(--font-primary, 'Tilt Warp', cursive);
      font-size: 1.6rem;
      text-align: left;
    }

    .custom-info-body h2 {
      font-size: 1.2rem;
      text-align: left;
    }

    .custom-info-body h3 {
      font-size: 1.1rem;
      text-align: left;
    }
  

    .custom-info-body h4 {
      font-size: 1rem;
      text-align: left;
    }
  
    .custom-info-body h5 {
      font-size: 0.9rem;
      text-align: left;
    }
  
    .custom-info-body a {
      font-size: 0.85rem;
      font-weight: bold;
      text-decoration: underline;
      color: var(--color-secondary-text, #033f4c);
      word-break: break-word;
      overflow-wrap: anywhere;
    }

    @media (max-width: 450px) {
      .break-download {
        display: block;
        margin-top: 0.5rem;
      }
    }
  
  
    /* ------------ End Main Section Layout ------------- */

    /* ------------ App Promo Widget ------------- */

    .app-promo-widget {
      font-family: 'Mulish', sans-serif;
      max-width: 400px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    
    .app-promo-widget-top {
      background-color: #DC7E5D;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      padding: 2rem;
      flex-wrap: wrap;
    }
    
    .app-promo-widget-logo {
      width: 100px;
      height: 100px;
      object-fit: cover;
      flex-shrink: 0;
      border-radius: 20px;
    }
    
    .app-promo-widget-text h2 {
      font-family: var(--font-primary, 'Tilt Warp', cursive);
      font-size: 2rem;
      margin: 0;
      color: var(--color-primary-text);
    }
    
    .app-promo-widget-text p {
      margin: 0;
      font-size: 0.85rem;
      color: var(--color-primary-text);
      /* line-height: 1.4; */
    }
    
    .app-promo-widget-bottom {
      background-color: #D05534;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
      padding: 1rem;
      flex-wrap: wrap;
    }
    
    .app-promo-widget-badge {
      height: 40px;
      max-width: 160px;
      object-fit: contain;
    }

    /* ------------ End App Promo Widget  ------------- */


    /* ------------ Cookie Notice Popup ------------- */
    #cookie-notice-gdpr {
      position: fixed;
      inset: 0;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10000;
      width: 90%;
      max-width: 100vw;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    #cookie-notice-ccpa {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10000;
      width: 100%;
      max-width: 100vw;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    #cookie-overlay {
      position: fixed;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 9999;
      transition: opacity 0.3s ease;
    }

    .cookie-container {
      background-color: #fdf3d8;
      border-radius: 18px;
      max-width: 600px;
      width: 90%;
      padding: 25px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      font-family: system-ui, sans-serif;
      color: var(--color-secondary-text,#033f4c);
    }

    .cookie-content h2 {
      margin: 0 0 10px;
      font-size: 18px;
      font-weight: bold;
    }

    .cookie-content p {
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .cookie-content a {
      font-weight: bold;
      text-decoration: underline;
      color: #033f4c;
    }

    .cookie-buttons {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      flex-wrap: wrap;
    }

    .cookie-buttons button {
      padding: 10px 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      background-color: #033f4c;
      color: #fdf3d8;
      transition: background-color 0.2s ease;
    }

    .cookie-buttons button:hover {
      background-color: #033f4c;
    }

    /* ------------ End Cookie Notice Popup ------------- */
