/* =========================
   BENEFITS.CSS
========================= */
.benefits-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;
}

/* =========================
   SECTIONS
========================= */
.section,
.section-alt,
.measurablesection {
    width: 100%;
    padding: 50px 50px 50px 50px;
    box-sizing: border-box;
    transition: transform 0.25s ease;
}

.section { background: #fff; }
.section-alt { background: #f9f9f9; }
.measurablesection { background: #f2f2f2; }

.section:hover,
.section-alt:hover,
.measurablesection:hover {
    transform: translateY(-2px);
}

/* =========================
   TYPOGRAPHY
========================= */
.benefits-header_24 {
    font-size: 28px;
    font-family:  Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #222;
    margin-bottom: 25px;
    border-left: 6px solid #fac926;
    padding-left: 12px;
    text-align: left;
    max-width: 1100px;
}

.textbody {
    font-family:  Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    color: #000;
}


/* =========================
   QUOTE
========================= */
.quote {
    font-style: italic;
    background: #fffbea;
    border: 2px solid #fac926;
    border-radius: 8px;
    padding: 18px 25px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    max-width: 500px;
}


/* =========================
   FLEX LAYOUT
========================= */
.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 100%;
    margin: 0 auto;   /* THIS is what centers it */
    width: 100%;
}

.flex > div {
    flex: 1 1 350px;
    min-width: 280px;
}

/* =========================
   SELF-AWARENESS SECTION
========================= */
.section.self-awareness {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;

}

.self-awareness .textbody {
    flex: 1 1 500px;
    font-family:  Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
}

.self-awareness .quote {
    flex: 1 1 350px;
}


.cta-btn {
    display: inline-block;
    background-color: #fac926;
    color: #000;
    padding: 14px 34px;
    text-decoration: none;
    border-radius: 6px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .section,
    .section-alt,
    .measurablesection {
        padding: 30px 20px;
    }

    .benefits-header_24 {
        font-size: 28px;
    }

    .textbody {
        font-family:  Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        font-size: 18px;
    }

    
    .section.self-awareness {
        flex-direction: column;
    }

    .self-awareness .quote {
        max-width: 100%;
    }
}



.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;
}

.ylt-headerw {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 25px;
    border-left: 6px solid #fac926;
    padding-left: 12px;
}

.ylt-textbw {
    font-size: 18px;
    color: #ffffff;
    text-align: left;
    max-width: 100%;
    box-sizing: border-box;
}

	
/* COLOR BOXES */
.ylt-color-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    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; }
