/* ---------------------------
   UNDERSTANDING.CSS
---------------------------- */
.understanding-body {
      margin: 0;
      padding: 8px;
      font-family:  Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      font-size: 18px;
      background-color: #ffffff;
      color: #000;
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      align-items: center;
}

/* =========================
   UTILITIES
========================= */
.hr {
    border: none;
    height: 1px;
    background-color: #ddd;
    width: 100%;
    margin: 40px 0;
}

/* SECTION LAYOUT */
.benefits-section {
      background-color: #fff;
      width: 100%;
      align-items: center;      
      margin: 0px;
      padding: 50px 50px 50px 50px;
      border-radius: 0px;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }


.benefits-section2 {
      background-color: #f2f2f2;
      width: 100%;
      
      margin: 0px;
      padding: 125px 50px 50px 50px;
      border-radius: 0px;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

    .benefits-section2:hover {
      transform: translateY(-2px);
    }





/* HEADERS */
.ylt-header {
    font-size: 28px;
    color: #222;
    margin-bottom: 25px;
    border-left: 6px solid #fac926;
    padding-left: 12px;
    text-align: left;
}

.ylt-headerw {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 25px;
    border-left: 6px solid #fac926;
    padding-left: 12px;
}

/* TEXT BODY */
.ylt-textb {
    font-size: 18px;
    color: #000000;
    text-align: left;
    max-width: 100%;
    box-sizing: border-box;
}
.ylt-textbw {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

.ylt-textb p { margin-bottom: 18px; }

/* QUOTE BOX */
.ylt-quote {
    font-style: italic;
    color: #000000;
    background-color: #fffbea;
    border-left: 8px solid #fac926;
    border-radius: 8px;
    padding: 18px 50px;
    margin: 20px 0px 20px 0px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.04);
    width: 75%;
    box-sizing: border-box;
  
}

/* SUBSECTION TITLES */
.ylt-subheader {
    font-size: 22px;
    font-weight: bold;
    color: #111;
    margin: 30px 0 15px;
    border-bottom: 2px solid #fac926;
    display: inline-block;
    padding-bottom: 3px;
}

/* COLOR BOXES */
.ylt-color-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    width: 70%;
    box-sizing: border-box;
}
.ylt-color-box {
    flex: 1 1 400px;
    max-width: 250px;
    border-radius: 10px;
    color: #fff;
    padding: 18px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
    word-wrap: break-word;
}
.ylt-color-box:hover { transform: translateY(-4px); }

.ylt-red { background: linear-gradient(135deg, #d30101, #e74c3c); }
.ylt-yellow { background: linear-gradient(135deg, #fac926, #f9d65c); color:#000000; }
.ylt-blue { background: linear-gradient(135deg, #0057b7, #4a90e2); }
.ylt-green { background: linear-gradient(135deg, #2e8b57, #58c47a); }


.ylt-color-box b { display: block; font-size: 20px; margin-bottom: 6px; }

/* IMAGE CENTER */
.ylt-center {
    text-align: center;
    margin-top: 30px;
}
.ylt-center img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.ylt-caption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* DIVIDER */
.ylt-divider {
    border: none;
    border-top: 1px solid #ddd;
    width: 90%;
    margin: 50px auto;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #000, #222);
    color: #fff;
    text-align: center;
    padding: 60px 60px;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
}
.cta-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fac926;
}
.cta-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 10px auto 25px;
    line-height: 1.7;
    color: #ffffff;
}
.cta-btn {
    display: inline-block;
    background-color: #fac926;
    color: #000000;
    font-weight: bold;
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.cta-btn:hover {
    background-color: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {

    /* Kill extra outer spacing */
    .understanding-body {
        padding: 0;
        display: block;
    }

    /* Fix section padding */
    .benefits-section,
    .benefits-section2 {
        padding: 30px 16px;
    }

    /* Reduce that huge top padding */
    .benefits-section2 {
        padding-top: 40px;
    }

    /* Fix quote box */
    .ylt-quote {
        width: 100%;
        padding: 12px 16px;
    }

    /* Fix CTA */
    .cta-section {
        padding: 40px 16px;
    }

    /* Tighten headers */
    .ylt-header,
    .ylt-headerw {
        font-size: 22px;
    }

    /* Prevent content squeeze */
    .ylt-color-grid {
        width: 100%;
    }
}