@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
}

button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: none;
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
a:hover,
a:focus {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
p {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
a,
input,
select,
button,
textarea,
p,
img {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 120%;
  letter-spacing: 0px;
  text-transform: uppercase;
}
h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 136%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #2a2d30;
}
h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 136%;
  letter-spacing: 0px;
  text-transform: uppercase;

  font-family: "Oswald", sans-serif;
}
h4 {
  font-size: 30px;
  font-family: "Oswald", sans-serif;
}
h5 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 136%;
  letter-spacing: 0px;
  text-transform: uppercase;
}
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 136%;
  letter-spacing: 0px;
  text-transform: uppercase;
}
p,
li {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0%;
  color: #5a6070;
}
span,
a {
  display: inline-block;
}
textarea {
  resize: none;
  font-family: "Roboto", sans-serif;
}
button {
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}

input,
input::placeholder,
textarea::placeholder {
  font-family: "Roboto", sans-serif;
}

.container {
  width: 100%;
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}

.green-btn,
.white-btn {
  background: #33bfad;
  width: max-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  padding: 8px 9px 8px 24px;
  color: #fff;
  border-radius: 40px;
}

.white-btn {
  background: #fff;
  color: #33bfad !important;
}

.green-btn:hover,
.white-btn:hover {
  background: #2a2d30;
}

.section-padding {
  padding: 100px 0;
}

/* header  */

header {
  width: 100%;
  position: fixed;
  z-index: 999;
  padding: 24px 0;
}

nav.navbar ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.inner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav.navbar ul li a {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #ffffff;
}

nav.navbar ul li a:hover,
li.current-menu-item a {
  color: #33bfad !important;
}

.cta-area {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ctas,
.user-cart {
  display: flex;
  align-items: center;
  gap: 20px;
}

.circled {
  width: 48px;
  height: 48px;
  border-radius: 80px;
  padding: 12px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.circled img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(93deg) brightness(103%) contrast(103%);
}

.circled:hover {
  background: #fff;
}

.circled:hover img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(3%) saturate(2603%)
    hue-rotate(169deg) brightness(97%) contrast(80%);
}

.user-cart {
  border-left: 1px solid #dee2e6;
  padding-left: 20px;
  gap: 0;
}

/* ===== BASE NAVBAR ===== */

/* parent li */
.navbar li {
  position: relative;
}

/* ===== SUB MENU DEFAULT (HIDDEN) ===== */
.navbar .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #2a2d30;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px;
  gap: 12px;
}

.navbar .sub-menu li a {
  color: #fff !important;
}

.navbar .sub-menu li a:hover {
  color: #33bfad !important;
}

/* hover effect (desktop) */
.navbar li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-arrow img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(105deg) brightness(104%) contrast(105%);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  position: relative;
  display: block;
  background: #33bfad;
  width: 40px;
  height: 3px;
  margin-bottom: 10px;
  transition: 0.4s ease-in-out;
}

.hamburger span:last-child {
  margin-bottom: 0;
}

.hamburger button {
  background: transparent;
  border: none;
}

.overflow {
  overflow: hidden;
}

.submenu-arrow {
  display: none;
}

.logo-area {
    max-width: 120px;
}

.logo-area img {
    width: 102px;
}

/* header end */

/* .hero-section */

.hero-section {
  height: 800px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #2a2d30;
}

.hero-content {
  max-width: 632px;
}

.liner-tagline {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 8%;
  text-transform: uppercase;
  color: #33bfad;
}



.double-liner {
  position: relative;
	padding-left: 30px;
	padding-right: 30px;
  width: max-content;
}
.auto-center{
	margin: 0 auto;
}

.double-liner::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background: #33bfad;
  right: 0;
  top: 10px;
}
.double-liner::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background: #33bfad;
  left: 0;
  top: 10px;
}
/* .hero-section .single-liner::before {
  background: #ced7e5;
} */

h1 > span {
  color: #33bfad;
}

.hero-content h1 {
  color: #fff;
  margin: 20px 0 24px 0;
}

.hero-content p,
.hero-content ul li {
  color: #fff;
}

.hero-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.hero-content ul li {
  position: relative;
  padding-left: 30px;
  width: 48%;
}

.hero-content ul li::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(../images/li-before.svg);
  background-repeat: no-repeat;
  left: 0;
  top: -2px;
}

.hero-btn-flx {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

/* .hero-section end */

/* logo-marquee-section */

.logo-marquee-section {
  padding: 20px 0;
  background: #fff;
}

.logo-marquee-section img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.logo-title-area h6 {
    text-align: center;
    margin-bottom: 28px;
}

/* logo-marquee-section end */

/* .problem-section */

.problem-section {
  background: #f5f6f7;
}

.problem-flex {
  display: flex;
  gap: 16px;
  align-items: center;
}

.problem-left,
.problem-right {
  width: 50%;
}

.problem-left h2 {
  margin: 20px 0;
}

.problem-left p {
  margin-bottom: 20px;
}

.problem-left .green-btn {
  margin-top: 16px;
}

.problem-boxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.single-problem-box {
  background: #fff;
  padding: 20px;
  border-left: 2px solid #33bfad;
	display: flex;
    flex-direction: column;
}
.problem-box-description-area {
    flex-grow: 1;
}
.problem-box-title-area {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}

/* .problem-section end  */

/* solution-section */

.section-definition {
  text-align: center;
  max-width: 1076px;
  margin: 0 auto;
}

.section-definition span {
  margin-bottom: 20px;
}

.solution-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
	justify-content: space-between;
}

.single-solution-box {
  width: 31%;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 0px 40px 6px #5a607029;
	display: flex;
    flex-direction: column;
}

.solution-content {
  padding: 16px 0;
	flex-grow: 1;
}

.solution-content p {
  margin: 16px 0;
}

/* solution-section end  */

/* train-money-section */

.train-money-section {
  background: #f5f6f7;
}

.section-definition p {
  margin-top: 20px;
}

.train-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.single-train-box {
  background: #fff;
  box-shadow: 0px 0px 40px 6px #5a60700a;
  width: 32%;
  text-align: center;
  padding: 40px 56px;
}

.single-train-box span {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 136%;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
  color: #33bfad;
}

.single-train-box h5 {
  margin: 20px 0 16px 0;
}

.single-train-box p {
  font-size: 14px;
}

.performance-area {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 56px;
}

.performance-image img {
  width: 100%;
  margin: 0 auto;
}

.performance-content {
  text-align: center;
}

.performance-content a {
  margin: 0 auto;
}

.performance-content p {
  margin: 56px auto 36px auto;
  max-width: 910px;
}

/* train-money-section end */

/* track-record-section */

.track-record-section {
  background: #2a2d30;
}

.track-record-section h2 {
  color: #ffffff;
}

.track-record-section p {
  color: #f5f6f7;
}

.track-record-section .section-definition {
  max-width: 1280px;
}

.track-record-section .single-train-box {
  background: rgba(255, 255, 255, 0.02);
	border-left: 2px solid #33BFAD;
}

.track-record-section .single-train-box:hover {
  background: #33bfad;
}

.track-record-section .single-train-box:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(0%)
    hue-rotate(155deg) brightness(104%) contrast(102%);
}

.track-record-section .single-train-box img {
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.track-record-section .single-train-box h5 {
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
  color: #fff;
}

.track-record-section .single-train-box p,
.track-record-section .single-train-box p a {
  color: #fff;
}

.track-record-section .single-train-box p a {
  text-decoration: underline;
}

/* track-record-section end */

/* measurable-section */

.measurable-section {
  background: #f5f6f7;
}

.measurable-section .problem-boxes {
  flex-direction: row;
  margin-top: 48px;
  flex-wrap: wrap;
}

.measurable-section .problem-boxes .single-problem-box {
  width: 48%;
  border: unset;
}

.measurable-section
  .problem-boxes
  .single-problem-box
  .problem-box-description-area
  ul,
.problem-section ul, .high-cost-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.measurable-section
  .problem-boxes
  .single-problem-box
  .problem-box-description-area
  ul
  li,
.problem-section li, .high-cost-section li {
  padding-left: 30px;
  position: relative;
}

.measurable-section
  .problem-boxes
  .single-problem-box
  .problem-box-description-area
  ul
  li::before,
.problem-section li::before, .hero-right-desc ul li::before, .high-cost-section ul li::before{
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(../images/tick.svg);
  background-repeat: no-repeat;
  left: 0;
  top: -2px;
}

/* measurable-section end */

/* about-section */

.about-section {
  background:#f5f6f7;
}

.about-section .single-problem-box {
  border: unset;
  box-shadow: 0px 0px 40px 6px #5a607029;
	border-left: 2px solid #33bfad;

}

/* about-section end */

/* our-clients-section */

.our-clients-section {
  background: #f5f6f7;
}

.our-clients-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
}

.single-client {
  width: 121px;
}

.single-client img {
  width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.single-client img:hover {
    filter: brightness(0) saturate(100%) invert(67%) sepia(21%) saturate(1487%) hue-rotate(125deg) brightness(93%) contrast(85%);
}

/* our-clients-section end */

/* testimonial-section */

.single-testimonial {
  background: #f5f6f7;
  padding: 32px;
  text-align: center;
}

.single-testimonial img {
  margin: 0 auto;
}

.testimonial-slider-area {
  margin-top: 56px;
  position: relative;
}

.testimonial-slider {
  width: 66.3%;
  margin: 0 auto;
}

.user-name {
  margin-top: 32px;
}

.user-name h6 {
  margin: 12px 0 8px 0;
}

.comment-by-user {
  margin-top: 23px;
}

.single-testimonial img {
  width: auto !important;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 40%;
}

.testimonial-next.testimonial-nav-btn img {
  transform: rotate(180deg);
}

.testimonial-nav-btn {
  border: 1px solid #dee2e6;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.testimonial-nav-btn:hover {
  border: 1px solid #33bfad;
  background: #33bfad;
}

.testimonial-nav-btn:hover img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(0%) saturate(7481%)
    hue-rotate(68deg) brightness(106%) contrast(106%);
}

.testimonial-section .container {
  max-width: 1160px;
}

/* testimonial-section end */

/* faqs */

.faq-class-wrapper {
  max-width: 1164px;
  margin: 48px auto 0 auto;
}

.faq-class-item {
  border-bottom: 1px solid #eeeeee;
  padding: 24px 0;
}

.faq-class-answer {
  display: none;
  margin-top: 16px;
}

.faq-class-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-class-arrow {
  transition: transform 0.3s ease;
}

.faq-class-rotate {
  transform: rotate(180deg);
}

/* faqs end */

/* footer  */

footer {
  background: #2a2d30;
}

.footer-top {
  background: #33bfad;
  padding: 36px 0;
}

.footer-bottom {
  padding: 80px 0;
}

.footer-top-left {
  max-width: 584px;
}

.footer-top-left h2,
.footer-top-left p {
  color: #fff;
}

.footer-top-left p {
  margin-top: 20px;
}

.footer-top-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-top-right {
  width: 40%;
}

.footer-top-right input {
  width: 100%;
  padding: 24px;
  border: none;
}

.newsletter-class-field {
  display: flex;
  gap: 8px;
}

button.newsletter-class-submit {
  width: 63px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-area {
  max-width: 452px;
}
.footer-logo-area img {
    max-width: 150px;
}
.footer-logo-area p {
  color: #fff;
  margin-top: 24px;
}

.social-media-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
}

.single-social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-social img {
  width: 100%;
  height: 100%;
}

.footer-bottom-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-menu-area h3 {
  color: #fff;
  margin-bottom: 48px;
}

.footer-menu-area ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-menu-area ul li a {
  color: #fff;
}

.footer-menu-area ul li a:hover {
  color: #33bfad;
}

.copyright-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright-area p,
.copyright-area a {
  color: #fff;
}

.policies {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* footer end */

/* hero 2  */

.hero-section-two-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 40px;
}

.hero-section-two-right,
.hero-section-two-left {
  width: 50%;
  height: 100%;
}

.hero-section-two-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section-two-left {
  display: flex;
  align-items: center;
}

.hero-section h1 {
  color: #fff;
}

.hero-section-two-left p {
  color: #e9ecef;
  margin: 28px 0;
}

.left-content-hero {
  /* max-width: 560px; */
  margin: 0 auto;
}

/* hero 2 end */

/* case-section */

.case-section {
  background: #f5f6f7;
}

.case-section .problem-flex {
  flex-direction: row-reverse;
  gap: 56px;
}

.case-section .single-train-box {
  border-left: 2px solid #33bfad;
  padding: 24px 20px;
}

.case-section .single-train-box h5 {
  font-size: 36px;
  margin-top: 0;
}

/* case-section end */

/* approach-section */

.approach-section {
  background: #fff;
}

/* approach-section end */

/* framework-section */

.framework-section .single-train-box h6 {
  color: #33bfad;
  margin-bottom: 27px;
}

.framework-section .single-train-box:hover h6 {
  color: #fff;
}

.framework-section .single-train-box h5 {
  font-size: 24px;
}

.single-btn {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* framework-section end */

/* impact-section */

.impact-section {
  background: #f5f6f7;
}

.impact-title-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.impact-title-flex .section-definition {
  max-width: 600px !important;
  margin: 0 !important;
  text-align: left !important;
}

.impact-title-flex
  .section-definition
  .single-liner.double-liner.liner-tagline {
  margin: 0;
}

.impact-section .single-train-box {
  border-left: 2px solid #33bfad;
  text-align: left;
  padding: 24px 20px;
}

.impact-section .single-train-box h6 {
  color: #33bfad;
}

.impact-section .single-train-box h5 {
  margin: 36px 0 24px 0;
  font-size: 36px;
}

.impact-section .train-boxes {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 48px;
}

.marque-title {
  text-align: center;
  margin-top: 64px;
}
.impact-section .logo-marquee-section {
  padding-bottom: 0 !important;
}

/* impact-section end */

/* story-section */

.story-section {
  background: #f5f6f7;
}

.story-section p {
  color: #5a6070;
}

.story-section .single-liner {
  margin-bottom: 20px;
}

.story-section .hero-section-two-right {
  position: relative;
}

.hero-section-two-right-box {
  background: #ffffff;
  border-right: 2px solid #33bfad;
  padding: 24px;
  position: absolute;
  bottom: 18px;
  left: 24px;
  right: 24px;
}

.hero-section-two-right-box h5 {
  font-size: 18px;
  margin-bottom: 16px;
}

/* story-section end */

/* get-in-touch-2 */

.get-in-touch-2 .problem-flex{
  flex-direction: row-reverse;
  gap: 48px;
}

/* get-in-touch-2 end */
.program-type-section{
    background: #f5f6f7;
	}

.video-area {
    margin-top: 48px;
}

.video-area iframe {
    width: 100%;
    height: 600px;
}
.single-problem-box span {
    color: #33BFAD;
    margin-bottom: 20px;
}

.result-section, .industry-section, .get-started-section{
	background:#F5F6F7;
}

.result-section.track-record-section h2, .result-section.track-record-section h5, .result-section.track-record-section p{
	 color: #2a2d30;
}
.result-section .single-btn, .package-section .single-btn, .behavior-section .single-btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
	text-align:center;
}
.industry-section .impact-title-flex {
    align-items: center;
}
.single-industry {
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: rgba(0, 0, 0, .25) 0 0 25px;
    border-style: none;
    border-radius: 0;
    background-color: #f7f7f7;
    width: 24%;
}
.single-industry h6 {
    margin-bottom: 0 !important;
}
.all-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
	margin-top:48px;
}

.package-section{
	background:#fff;
}
.package-section .single-problem-box {
    background: #F5F6F7;
}

.get-started-section .impact-title-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.get-started-section .impact-title-flex .section-definition {
    width: 100%;
    max-width: 100% !important;
    margin: 0;
    text-align: center !important;
}

.get-started-section .impact-title-flex .section-definition a.green-btn {margin: 30px auto;}

.get-started-section .impact-title-flex .single-liner.double-liner.liner-tagline {
    margin: 0 auto;
}

.get-started-section p a{
	color:#33BFAD;
}

.location-hero-flex {
    display: flex;
    align-items: center;
	gap:48px;
}

.location-hero-flex .hero-content {
    max-width: unset;
    width: 50%;
}

.location-hero-flex .hero-content-2 {
    width: 50%;
}

.location-hero-flex .single-train-box {
    width: 48%;
	padding:15px;
}

.hero-right-desc p, .hero-right-desc h5, .hero-right-desc li {
    color: #fff;
}

.hero-right-desc p {
    margin-top: 20px;
}

.hero-right-desc ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-right-desc ul li {
    position: relative;
    padding-left: 30px;
}

.hero-right-desc h5{
	margin-bottom:20px;
	color:#33BFAD;
}

.location-hero-flex .single-train-box h5 {
    margin-top: 0;
	color:#33BFAD;
}

.hero-content-2 {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
}

.perks-section {
    background: #F5F6F7;
}

.perks-section p, .perks-section li {
    color: #5a6070;
}

.perks-section ul {
    margin-top: 20px;
}

.perks-section .hero-content-2 {
    background: #fff;
}

.perks-section .location-hero-flex {
    align-items: flex-start;
}

.perks-section .location-hero-flex .hero-content a.green-btn{
	margin-top:36px;
}

.perks-section .location-hero-flex h2{
	margin: 20px 0; 
}

.reality-section{
	background:#fff;
}

.workshop-section .single-problem-box .green-btn {
    margin-top: 30px;
}

.workshop-section .impact-title-btn {
    text-align: center;
    margin-top: 48px;
}

.impact-title-btn p a, p a {
    color: #33BFAD;
	    font-weight: 400;
    text-decoration: underline;
}

.workshop-section {
    background: #fff;
}

.workshop-section .single-problem-box {
    box-shadow: 0px 0px 40px 6px #5A607029;
}

.disclamiar-section{
	background: #2a2d30;
	padding:60px 0;
	text-align:center;
	color:#fff;
}

.disclamiar-section p, .disclamiar-section li, .disclamiar-section p a{
	color:#fff;
}

.program-location-section, .book-strategy-section{
	padding-top: 0px !important;
}

.program-location-section a.green-btn{
	margin-top:30px;
}

.local-program-section .problem-boxes {flex-direction: row;flex-wrap: wrap;}

.local-program-section .single-problem-box {
    width: 48%;
}

/* ===== 2nd LEVEL SUBMENU (DESKTOP) ===== */

.navbar .sub-menu .sub-menu {
  top: 0;
  left: 100%; /* parent ke right side */
  margin-left: 10px;
  transform: translateY(0);
}

/* hover par open */
.navbar .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* arrow rotation for nested */
.navbar .sub-menu li .submenu-arrow {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.navbar .sub-menu li.menu-open > .submenu-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.navbar .sub-menu li .submenu-arrow {
    top: 0;
}

.outcomes-section .container{
	padding-top: 30px;
	border-top: 2px solid #fff;
}
.outcomes-section{
	padding-top: 30px !important;
}

.what-platform-section {
    background: #fff;
}
.hero-section h1 span {
    display: inline;
}

.platform-fit-section {
    background: #fff;
}

.platform-fit-section .single-problem-box, .inside-section .single-problem-box, .hr-leadership-section .single-problem-box{
    box-shadow: 0px 0px 40px 6px #5A607029;
}

.difference-section, .vault-action-section, .expand-section {
    background: #F5F6F7;
}

.difference-section .single-problem-box {
    background: #fff;
    width: 32% !important;
}

.inside-section {
    background: #fff;
}

.hr-leadership-section {
    background: #fff;
}

.expand-section p {
    margin-top: 30px;
}

.expand-section p a {
    color: #33BFAD;
}

.problem-right iframe {
    width: 100%;
}

.high-cost-section h2{
	margin-bottom:30px;
}

.webinar-pricing {
	background: #f5f6f7;
}

.webinar-pricing .single-problem-box {
    background: #fff;
    width: 32% !important;
}

.webinar-process-section .performance-area .green-btn {
    margin-top: 36px;
}

.started-webinar-section {
    background: #fff;
}

.started-webinar-section p a {
	color:#33BFAD;
}

.get-started-section p a.green-btn {
    color: #fff;
}

.page-id-241 .behavior-section, .page-id-235 .delivery-formats-section, .page-id-245 .behavior-section, .page-id-21 section.measurable-section.package-section.section-padding.webinar-pricing {
    display: none;
}{
	display:none;
}

.delivery-formats-section p, .delivery-formats-section li {
    color: #5A6070;
}

.delivery-formats-section h6{
    margin-bottom:12px;
}

.delivery-formats-section .hero-content-2 {
    background: #F5F6F7;
}

.delivery-formats-section .location-hero-flex {
    margin-top: 48px;
}

.video-section video {
    height: 350px;
    object-fit: cover;
    margin:50px 0;
}

.video-section{
	text-align:center;
}

.business-case-section .problem-flex, .signature-section .problem-flex{
    align-items: flex-start;
}

.business-case-section .single-problem-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.business-case-section{
	padding-top: 0px !important;
}

.video-section .green-btn{
	margin: 0 auto;
}

.signature-section {
    background: #f5f6f7;
}

.additional-keynotes-section {
    background: #fff;
}

.additional-keynotes-section h5 {
    font-size: 20px !important;
    text-align: left;
}

.additional-keynotes-section p {
    text-align: left;
}

.section-definition a.green-btn {
    margin: 20px auto 0 auto;
}

.pro-sport-hero-section{
	height:650px;
	background-size:cover;
	background-position:center;
	display: flex;
    align-items: flex-end;
    text-align: center;
}

.pro-hero-content {
    background: #2a2d30;
    width: 100%;
    color: #fff;
    padding: 40px 0;
}

.training-section .single-train-box h5{
	font-size:24px;
	margin-top:0;
}

.training-section .train-boxes{
	border-bottom:unset;
	padding-bottom:0;
}

.page-id-23 .logo-marquee-section {
    background: #fff;
}

.user-name img {
    width: 56px;
    height: 56px;
    border-radius: 100%;
}

p a{
	color:#33BFAD;
}

p a.green-btn{
	color:#fff;
}

.pro-hero-content h1 {
    font-size: 20px;
}

.pro-hero-content {
    padding: 30px 0;
}

section.pro-sport-hero-section {
    height: 400px;
}

.page-id-25 .our-clients-section {
    background: #fff;
}

.page-id-25 .our-clients-logos {
    justify-content: center;
    gap: 48px;
}

.high-cost-section iframe {
    width: 100%;
    max-width: 1140px;
    margin-left:  auto !important;
    margin-right: auto !important;
    /*height: 600px;*/
}

p:has(iframe) {
    text-align: center;
}

.nil-solution-section .single-problem-box a {
    margin-top: 30px;
}

.nil-solution-section {background: #33BFAD;}

.nil-solution-section h2 {
    color: #fff;
}
.tools-section {
    background: #fff;
}

.page-id-25 .testimonial-section.section-padding {
    background: #F5F6F7;
}

.cf-section {
    background: #F5F6F7;
    padding-bottom: 0px !important;
}

.solution-thumbnail a, .solution-thumbnail a img {
    width: 100%;
    object-fit: cover;
}

.solution-content a {
    color: #000;
}

.all-blogs-section .single-solution-box {
    width: 32%;
}


.blog-detail-header {
    margin-bottom: 30px;
}

.blog-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 14px;
    color: #777;
}

.breadcrumb a {
    color: #777;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 5px;
}

.next-link {
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.blog-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.blog-meta {
    font-size: 14px;
    color: #888;
}

.blog-meta span {
    margin-right: 10px;
}

section.blog-detail-section.section-padding {
    padding-top: 160px;
}

.post-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.post-navigation a {
    color: #2a2d30;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.single-post header {
    background: #2a2d30 !important;
}

/* Parent Wrapper */
.blog-detail-content-area {
    line-height: 1.7;
    font-size: 16px;
    color: #333;
}

/* Paragraphs */
.blog-detail-content-area p {
    margin: 0 0 20px;
}

/* Headings (balanced sizes) */
.blog-detail-content-area h1,
.blog-detail-content-area h2,
.blog-detail-content-area h3,
.blog-detail-content-area h4,
.blog-detail-content-area h5,
.blog-detail-content-area h6 {
    margin: 35px 0 15px;
    line-height: 1.3;
    font-weight: 600;
}

.blog-detail-content-area h1 { font-size: 32px; }
.blog-detail-content-area h2 { font-size: 26px; }
.blog-detail-content-area h3 { font-size: 22px; }
.blog-detail-content-area h4 { font-size: 20px; }
.blog-detail-content-area h5 { font-size: 18px; }
.blog-detail-content-area h6 { font-size: 16px; }

/* Lists */
.blog-detail-content-area ul,
.blog-detail-content-area ol {
    margin: 0 0 20px 20px;
}

.blog-detail-content-area li {
    margin-bottom: 10px;
}

/* Blockquote */
.blog-detail-content-area blockquote {
    margin: 25px 0;
    padding: 15px 20px;
    border-left: 4px solid #33bfad;
    background: #f9f9f9;
    font-style: italic;
}

/* Links */
.blog-detail-content-area a {
    color: #33bfad;
	 width: 100%;
    text-decoration: underline;
}

/* Images (inside content) */
.blog-detail-content-area img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 25px 0;
    display: block;
}

/* Remove weird WP align issues */
.blog-detail-content-area .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Iframe (YouTube etc) */
.blog-detail-content-area iframe {
    width: 100%;
    height: 600px;
    margin: 25px 0;
    border: none;
}

/* Tables */
.blog-detail-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.blog-detail-content-area th,
.blog-detail-content-area td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.blog-detail-content-area th {
    background: #f5f5f5;
    font-weight: 600;
}

/* Strong text */
.blog-detail-content-area strong {
    font-weight: 600;
}

/* Spacing fix for empty paragraphs */
.blog-detail-content-area p:empty {
    display: none;
}

section.blog-detail-section.section-padding .container {
    max-width: 1100px;
    margin: 0 auto;
}

.page-template-contact-us header, .page-template-policies header {
    background: #2A2D30 !important;
}

.form-area {
    padding: 80px 0;
}

.social-account {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-account img {
    width: 30px;
    height: 30px;
}

.social-account-area {
    text-align: center;
}

.social-account-area p {
    margin: 30px 0;
}

.policies-section {
  padding: 60px 20px;
  color: #111;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

/* Headings (ALL levels) */
.policies-section h1,
.policies-section h2,
.policies-section h3,
.policies-section h4,
.policies-section h5,
.policies-section h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-top: 40px;
  margin-bottom: 12px;
}

/* Individual heading sizes */
.policies-section h1 { font-size: 36px; margin-top: 0; }
.policies-section h2 { font-size: 28px; }
.policies-section h3 { font-size: 24px; }
.policies-section h4 { font-size: 20px; }
.policies-section h5 { font-size: 18px; }
.policies-section h6 { font-size: 16px; }

/* Paragraphs */
.policies-section p {
  font-size: 16px;
  margin-bottom: 16px;
}

/* Strong / bold */
.policies-section strong,
.policies-section b {
  font-weight: 600;
}

/* Links */
.policies-section a {
  color: #000;
  text-decoration: underline;
}

/* Lists */
.policies-section ul,
.policies-section ol {
  margin: 16px 0 16px 20px;
  padding: 0;
}

.policies-section li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Blockquotes (in case editor adds them) */
.policies-section blockquote {
  margin: 20px 0;
  padding-left: 16px;
  border-left: 3px solid #ddd;
  color: #555;
  font-style: italic;
}

/* Horizontal line */
.policies-section hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* Images (if added later) */
.policies-section img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

/* Small text */
.policies-section small {
  font-size: 14px;
  color: #666;
}

.policies-section p a.green-btn img {
	margin: unset;
}

.page-id-257 .hero-content {
    max-width: 100%;
}

.performance-info-section .parent-info {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 2px solid #000;
}

/* remove border from last one */
.performance-info-section .parent-info:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* spacing for headings */
.performance-info-section .parent-info h1,
.performance-info-section .parent-info h2,
.performance-info-section .parent-info h3,
.performance-info-section .parent-info h4,
.performance-info-section .parent-info h5,
.performance-info-section .parent-info h6 {
  margin-bottom: 16px;
}

/* spacing for paragraphs */
.performance-info-section .parent-info p {
  margin-bottom: 14px;
}

/* industries spacing */
.performance-info-section .parent-info .all-industries {
  margin: 20px 0;
}

.performance-info-section .parent-info .single-industry {
  margin-bottom: 8px;
}

/* bottom description spacing */
.performance-info-section .parent-info .bottom-desc {
  margin-top: 20px;
}

/* button spacing */
.performance-info-section .parent-info .green-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

/* spacing before button if inside paragraph */
.performance-info-section .parent-info p .green-btn {
  margin-top: 16px;
  display: inline-flex;
}



/* each block */
.pillar-section .pillar-block {
  padding: 50px 0;
  border-bottom: 1px solid #ddd;
}

/* remove last border */
.pillar-section .pillar-block:last-child {
  border-bottom: none;
}

/* headings center */
.pillar-section .pillar-block h1,
.pillar-section .pillar-block h2,
.pillar-section .pillar-block h3,
.pillar-section .pillar-block h4,
.pillar-section .pillar-block h5,
.pillar-section .pillar-block h6 {
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* paragraphs */
.pillar-section .pillar-block p {
  margin-bottom: 14px;
}

/* list */
.pillar-section .pillar-block ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 40px;
  margin: 15px 0 20px;
  padding-left: 20px;
}

/* list items */
.pillar-section .pillar-block li {
  margin-bottom: 6px;
}

/* optional: nicer bullets */
.pillar-section .pillar-block li::marker {
  content: "✔ ";
}

.delivery-section {
	background:#F5F6F7;
    text-align: center;
}

.evaluation-section {
    text-align: left;
}

.evaluation-section h2 {
    margin-bottom: 30px;
}

.evaluation-section p {
    margin-bottom: 20px;
}
.certification-section {
    padding-top: 0 !important;
}

.page-id-31 .hero-content {
    max-width: 100%;
}

.certification-section .our-clients-logos {
    justify-content: center;
    gap: 100px;
}

.page-template-press .single-client img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(3202%) hue-rotate(51deg) brightness(103%) contrast(100%);
}

.press-podcast-section {
    background: #F5F6F7;
}

section.get-started-section.section-padding.high-cost-section.stage-section iframe {
    margin: 40px 0;
}

section.get-started-section.section-padding.high-cost-section.stage-section ul li h4 {
    font-size: 20px;
    color: #111;
    margin-bottom: 10px;
}

/* Table Reset & Layout */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.specs-table th, 
.specs-table td {
  border: 1px solid #ddd;
  padding: 20px;
  vertical-align: top;
  text-align: left;
}

/* Header Styling */
.specs-table thead {
  background: #111;
  color: #fff;
  text-align: center;
}

.specs-table thead th {
  width: 25%;
  font-weight: bold;
}

/* Row Label Column */
.specs-table .row-label {
  background: #111;
  color: #fff;
  font-weight: bold;
  width: 15%;
  text-align: center;
  vertical-align: middle;
}

/* List Styling inside cells */
.specs-table td ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 20px;
}

.specs-table td li {
  list-style-type: disc;
  font-size: 14px;
  line-height: 1.4;
}

section.planner-specs h2 {
    text-align: center;
}

section.planner-specs table {
    margin-top: 40px;
}

section.planner-specs{
	padding-bottom:0 !important;
}

/* Main Section Wrapper */
.playbook-section {
    width: 100%;
}

/* Row Wrap - Handles the full-width background colors */
.playbook-row-wrap {
    padding: 100px 0;
    width: 100%;
}

/* Background alternating logic for when you add the loop */
.playbook-row-wrap:nth-child(odd) {
    background-color: #f5f7f8; /* Light Grey */
}

.playbook-row-wrap:nth-child(even) {
    background-color: #ffffff; /* White */
}

/* Internal Wrapper logic */
.playbook-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Targeting Typography through parent */
.playbook-content-wrapper h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 400;
}

.playbook-top-content {
    line-height: 1.6;
    color: #444;
}

.playbook-top-content p {
    margin-bottom: 15px;
}

/* Middle Flexbox Logic */
.playbook-middle-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.playbook-text-side {
    flex: 1;
}

/* Specific targeting for list inside the editor side */
.playbook-text-side ul, .playbook-top-content ul {
    margin-top: 20px;
}

.playbook-text-side li, .playbook-top-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    list-style: none;
}

/* Simple Checkmark/Icon for list items */
.playbook-text-side li::before, .playbook-top-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3eb4a4;
    font-weight: bold;
}

.playbook-image-side {
    flex: 0 0 350px;
}

.playbook-image-side img {
    width: 100%;
    height: auto;
    display: block;
    /* Adding a subtle perspective shadow like the screenshot */
    filter: drop-shadow(15px 15px 20px rgba(0,0,0,0.15));
}

/* Bottom Content & Button */
.playbook-bottom-content {
    text-align: center;
    margin-top: 20px;
}

/* .playbook-bottom-content .green-btn {
    display: inline-block;
    background-color: #3eb4a4;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px;
    letter-spacing: 1px;
    transition: transform 0.2s ease;
}

.playbook-bottom-content .green-btn:hover {
    background-color: #349c8f;
    transform: translateY(-2px);
} */

/* Responsive Handling */
/* @media (max-width: 991px) {
    .playbook-middle-flex {
        flex-direction: column;
        text-align: left;
    }
    .playbook-image-side {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
} */

section.playbook-section a.green-btn {
    margin: 0 auto;
}

.page-id-27 section.faq-section.section-padding {
    padding-top: 0 !important;
}

.not-right p {
    text-align: center;
    margin-top: 30px;
}

.train-boxes.right-boxes .single-train-box {
    background: #2A2D30;
    color: #fff;
}

.train-boxes.right-boxes .single-train-box p {
    color: #fff;
}

.page-template-my-money-playbook-college-edition section.testimonial-section.section-padding {
    padding-top:  0 !important;
}

section.get-started-section.section-padding.high-cost-section.inside-money-playbook-section h4 {
    font-weight: 400;
}

section.get-started-section.section-padding.high-cost-section.inside-money-playbook-section li h4, .playbook-top-content li h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color:#111;
}

section.get-started-section.section-padding.high-cost-section.inside-money-playbook-section.library-section {
    background: #fff;
}

section.get-started-section.section-padding.high-cost-section.inside-money-playbook-section.library-section h3 {
    margin: 20px 0;
}

section.get-started-section.section-padding.high-cost-section.inside-money-playbook-section.library-section a.green-btn{
	margin-top: 30px;
}

.extra-playbook-area:nth-child(odd) {
    background: #F5F6F7;
}

.extra-playbook-area {
    padding: 60px;
}

.extra-playbook-area p {
    margin: 30px 0;
}

.extra-playbook-section {
    padding-bottom: 0 !important;
}

.page-id-249 .extra-playbook-section{
	display:none;
}

.expand-section .hero-btn-flx p{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
}
.bonus-section .solution-thumbnail {
    height: 335px;
}

.bonus-section .solution-thumbnail img {
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

.bonus-section .solution-content span {
    margin: 20px 0 0 0;
    color: #33BFAD;
}

.what-you-get-section{
	padding-top: 0 !important;
}

.coach-hill span {
    font-size: 52px;
    font-style: italic;
      font-family: "Caveat", cursive;
}

.page-id-1124 .faq-section.section-padding {
    background: #F5F6F7;
}

.page-id-467 .reality-section .single-problem-box {
    background: #36454F;
}

.page-id-467 .reality-section .single-problem-box h5 {
    color: #fff;
}

.page-id-467 .reality-section .single-problem-box p {
    color: #fff;
}

.page-id-467 .choose-program-section .single-problem-box, .page-id-231 .offer-section .single-problem-box{
    width: 32% !important;
}



.single-problem-box span{
	  font-family: "Oswald", sans-serif;
}

.solution-thumbnail {
    height: 300px;
}

.solution-thumbnail img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}



.problem-box-title-area img{
 width: 40px;
    height: 40px
}

.extra-bottom-text {
    text-align: center;
    margin-top: 40px;
}

.page-id-231 .industry-section .section-definition {
    width: 100%;
    text-align: center !important;
    margin:0 auto !important;
}

.page-id-231 .industry-section .impact-title-btn {
    width: 50%;
}

.page-id-231 .package-section .single-problem-box {
    width: 32% !important;
}

.page-id-231 .package-section .problem-boxes .single-problem-box:last-child {
    width: 100% !important;
    border-left: 2px solid #33BFAD;
    border-top: 2px solid #33BFAD;
}
.page-id-231 .performance-area, .page-id-263 .performance-area{
    padding-top: 0;
}
.page-id-263 .book-strategy-section .single-train-box {
    background: #2a2d30;
}

.page-id-263 .book-strategy-section .single-train-box h5, .page-id-263 .book-strategy-section .single-train-box p {
    color: #fff;
}

.what-platform-section .single-solution-box {
    width: 32%;
}

.what-platform-section .single-solution-box .solution-thumbnail {
    height: 300px;
}
.single-problem-box {
    box-shadow: 0px 0px 40px 6px #5A607029;
}

.webinar-pricing .single-problem-box span {
    font-family: "Roboto", sans-serif;
}

.webinar-pricing .problem-box-description-area {
    border-top: 4px solid #33BFAD;
    margin-top: 40px;
}
.behavior-section .single-solution-box {
    width: 32%;
}

.new-box a.green-btn{
	margin-top:30px;
}

.videos-flex {
    display: flex;
    gap: 40px;
	    width: 100%;
    overflow: hidden;

}

.videos-flex video {
    width: 50%;
}

.founder-ceo-section2 .problem-flex {
    flex-direction: row;
}

.best-author {
    background: #f5f6f7;
}

.testimonial-section .testimonial-slider .owl-stage {
    display: flex;
}

.testimonial-section .testimonial-slider .owl-item {
    display: flex;
}

.testimonial-section .single-testimonial {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-id-247 .hero-section {
    background-position: top;
}

.page-id-247 .business-case-section .problem-box-description-area {
    width: 80%;
}

.page-id-247 .webinar-pricing .problem-box-description-area, .page-id-245 .webinar-pricing .problem-box-description-area{
    padding-top: 0;
    border-top: unset;
    margin-top: 0;
}
a.green-btn {
    text-decoration: none !important;
}

.high-cost-section .green-btn {
    margin: 0 auto;
}

.page-template-playbook-budget .hero-section, .page-template-moneymap .hero-section {
    height: 400px;
    padding-top: 100px;
}

.black-coach-section {
    background-color: #272727;
}

.black-coach-section p, .black-coach-section h2, .black-coach-section h3, .black-coach-section li {
    color: #fff;
}

.what-is-budget-cost h2 {
    margin-bottom: 30px;
}

.what-budget-boxes {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.what-budget-box {
    background: #F5F6F7;
    padding: 20px;
}

.what-budget-box .green-btn {
    margin: 20px auto;
}

.what-budget-box iframe {
    width: 100%;
    height: 600px;
}

.extra-bottom-text-title {
    background-color: #272727;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.extra-bottom-text-title h2 {
    color: #fff;
}

.black-map-section .green-btn{
	margin: 30px 0 0 0;
}

.what-budget-boxes2 .what-budget-box {
    display: flex;
    gap: 30px;
    align-items: center;
}

.what-budget-box-right, .what-budget-box-left {
    width: 50%;
}

.what-budget-boxes2 .what-budget-box iframe {
    height: 315px;
}

.sample-money-section{
	text-align:center;
	padding-top: 0px !important
}

.page-id-1218 .black-coach-section, .page-id-1218 .sample-money-section, .page-id-1223 .sample-money-section, .page-id-1224 .sample-money-section{
	display:none;
}

.what-budget-boxes2 .what-budget-box .what-budget-box-left img {
    width: 100%;
    object-fit: cover;
}

.what-budget-boxes2 .what-budget-box:nth-child(even) {
    flex-direction: row-reverse;
}

.what-budget-boxes2 .what-budget-box .green-btn{
	margin-left:0;
	margin-right:0;
}

.what-budget-top .green-btn {
    margin: 30px auto;
}

.hero-section-four .hero-section-two-flex {
    align-items: flex-start;
    padding-top: 80px;
	padding-left: 0 !important;
}

.hero-section-four .hero-section-two-left {
    align-items: flex-start;
}

.hero-section-four h1 {
    font-size: 70px;
}

.hero-section-four .hero-section-two-right p {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}

.hero-btn-flx a img {
    width: auto;
}

.booking-coach-section {
    background: #F5F6F7;
}

.booking-coach-section h5 {
    color: #33BFAD;
}

.page-template-about-us-new .proven-impact-section .section-definition {
    text-align: left;
}

.page-template-about-us-new .proven-impact-section .single-liner.double-liner.liner-tagline {
    margin: unset;
}

.page-template-about-us-new .proven-impact-section .section-definition p {
    max-width: 555px;
}

.page-template-about-us-new .proven-impact-section .train-boxes {
    gap: 0;
    justify-content: center;
}

.page-template-about-us-new .proven-impact-section .single-train-box {
    background: rgba(255, 255, 255, 0.08) !important;
    border: unset !important;
}

.page-template-about-us-new .proven-impact-section .single-train-box h5 {
    color: #33BFAD !important;
}

.how-we--work--section .section-definition {
    text-align: left;
    max-width: 900px;
    margin: unset;
}

.how-we--work--section .single-train-box {
    text-align: left;
	border-top:2px solid grey;
}

 blockquote {
    margin: 25px 0;
    padding: 15px 20px;
    border-left: 4px solid #33bfad;
    background: #f9f9f9;
    font-style: italic;
}

.who-serve-container {
  display: flex;
  flex-wrap: wrap;
/*   gap: 40px; */
  margin-top:60px;
}

.who-serve-card {
  width: 48%; 
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
	background: #fff;
    padding: 30px;
}

.who-serve-card > span {
  font-size: 14px;
  font-weight: bold;
  color: #33BFAD;
  margin-bottom: 15px;
}

.who-serve-card > h3 {
  font-size: 22px;
  color: #2A2D30;
  margin: 0 0 15px 0;
  letter-spacing: 1px;
}

.who-serve-card > p {
  font-size: 15px;
  line-height: 1.6;
/*   color: blue; */
  margin: 0 0 25px 0;
}

/* .who-serve-card > a {
  font-size: 13px;
  font-weight: bold;
  color: #33BFAD;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
}

.who-serve-card > a:hover {
  text-decoration: underline;
} */
/* Box 1 - Right and Bottom border */
.who-serve-card:nth-child(1) {
  border-right: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

/* Box 2 - Bottom border only */
.who-serve-card:nth-child(2) {
  border-bottom: 1px solid #E2E8F0;
}

/* Box 3 - Right border only */
.who-serve-card:nth-child(3) {
  border-right: 1px solid #E2E8F0;
}

/* Box 4 - No borders */
.who-serve-card:nth-child(4) {
  border: none;
}

.who--we--serve--section {
    background: #F5F6F7;
}


/* Container styling with flexbox */
.credential-cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  background-color: #ffffff;
  gap:20px
}

.credential-cards-box {
  width: 32%;
  box-sizing: border-box;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 3px solid #E2E8F0;
  border-right: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  border-left: 1px solid #E2E8F0;
}

.credential-cards-box > div {
  border: 1px solid #E2E8F0;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: bold;
  color: #2A2D30;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.credential-cards-box > h3 {
  font-size: 18px;
  color: #2A2D30;
  line-height: 1.4;
  margin: 0 0 10px 0;
  min-height: 50px;
}

.credential-cards-box > span {
  font-size: 12px;
  font-weight: bold;
  color: #33BFAD;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.credential-cards-box > p {
  font-size: 14px;
  line-height: 1.6;
  color: #5A6070;
  margin: 0;
}

.about-new-form-section {
    background: #F5F6F7;
}

.about-new-form-section .problem-flex {
    flex-direction: row;
}

.page-template-about-us-new .our-clients-section.section-padding {
    margin-bottom: 60px;
}

.footer-links {
    display: flex;
    width: 100%;
    max-width: 39%;
    gap: 50px;
}


.benefit-video-area {
    margin-top: 100px;
}

section.measurable-section.package-section.section-padding {
    display: none;
}
span.italic-content {
    font-style: italic;
    font-weight: 600;
}


.all-content-wrapper {
    display: flex;
	justify-content:space-between;
}

.right-video,.left-text,.bottom-cta  {
    width: 100%;
    max-width: 47%;
}

section.track-record-section.section-padding.result-section.started-webinar-section {
    display: none;
}
section.problem-section.about-section.get-in-touch.get-in-touch-2.section-padding.founder-ceo-section.founder-ceo-section2 {
    background: #f5f6f7;
}
.inperspn-cta-btn{
	display:flex;
	justify-content:center;
	margin-top:60px;
}

.problem-left p span {
    display: inline;
}

.page-id-247 section.problem-section.about-section.get-in-touch.foundation-section.section-padding {
    display: none;
}
.page-id-247 section.problem-section.about-section.get-in-touch.section-padding.case-section.additional-keynotes-section {
    display: none;
}

.business-case-section .single-problem-box{
	    min-height: 165px;
}

.page-id-247 section.problem-section.about-section.benifit-section.section-padding.business-case-section {
    padding-top: 100px !important;
}






.page-id-261 .page-template-press .single-client img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.page-id-263 section.measurable-section.offer-section.section-padding.choose-program-section.program-location-section {
    padding-top: 100px !important;
    background-color: #ffff;
}
p.serving-area {
    margin-top: 40px;
    font-style: italic;
    font-weight: 600;
}
.page-id-263 section.train-money-section.process-section.section-padding.book-strategy-section {
    background-color: #fff;
    padding-top: 100px !important;
}
 .performance-content p{
margin-top:0 !important;}

 .measurable-section .problem-boxes .single-problem-box{
	width: 32%;}

.track-record-section .single-train-box h5{
	color: #fff!important;
}
.disclamiar-section{
	display:none;
}
.disclamiar-section.footer-desclaimer{
	display:block !important;
	background:#fff !important;
}
.disclamiar-section.footer-desclaimer p{
	color:#2a2d30;
	font-size:10px;
}
 .hero-section {
    position: relative;
    overflow: hidden;
}

 .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); /* Adjust darkness */
    z-index: 1;
}

/* Keep all content above the overlay */
 .hero-section > * {
    position: relative;
    z-index: 2;
}

/* .problem-right img{
	margin-top:40px;
} */

.hero-sec-v2 p span{
	color:#33bfad;
}
.hero-sec-v2 a{
    padding: 15px 20px;
    border-radius: 6px;
}


.money-system-sec {
    padding: 80px 0;
    background: #fff;
}

.money-system-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: start;
}

.sub-title {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #33BFAD;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.money-left h2 {
    font-size: 56px;
    line-height: 1;
    font-weight: 900;
    color: #2A2D30;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.money-left h2 span {
    display: block;
    color: #33BFAD;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #8c9195;
    margin-bottom: 35px;
}

.feature-list {
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid #ececec;
}

.feature-item:last-child {
    border-bottom: 1px solid #ececec;
}

.icon {
    flex-shrink: 0;
    font-size: 18px;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 15px;
    font-weight: 800;
    color: #2A2D30;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #33BFAD;
}

.quote-box {
    background: #2A2D30;
    padding: 40px;
    margin-bottom: 40px;
}

.quote-box p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.quote-box span {
    display: block;
    color: #33BFAD;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.right-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #6f7579;
    margin-bottom: 25px;
}

.right-content strong {
    color: #2A2D30;
    font-weight: 700;
}



.playbook-series-sec {
    background: #2a2d30;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.playbook-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: rgba(255,255,255,.45);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.playbook-content h2 {
    color: #fff;
    font-size: 68px;
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.playbook-content h2 span {
    display: block;
    color: #33BFAD;
}

.playbook-content h3 {
    color: #fff;
    font-size: 52px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.desc {
    max-width: 760px;
    margin: 0 auto;
    color: #c6c6c6;
    font-size: 18px;
    line-height: 2;
}

.desc span {
    color: #33BFAD;
}

.stats-row {
    display: flex;
    justify-content: center;
    margin-top: 70px;
    padding: 45px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.stat-box {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 0 25px;
    position: relative;
}

.stat-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10px;
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,.08);
}

.stat-box h4 {
    color: #33BFAD;
    font-size: 52px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 15px;
}

.stat-box p {
    color: rgba(255,255,255,.45);
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.playbook-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.btn-primary,
.btn-outline {
    min-width: 240px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: .3s;
}

.btn-primary {
    background: #33BFAD;
    color: #2a2d30;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.7);
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #2a2d30;
}

.bottom-text {
    margin-top: 35px;
    text-align: center;
}

.bottom-text p {
    color: #c6c6c6;
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}


.collection-title{
    font-family:'Oswald', sans-serif;
    font-size:56px;
    line-height:1;
    font-weight:700;
    text-transform:uppercase;
    color:#333;
    margin-bottom:8px;
}

.collection-subtitle{
    font-family:'Oswald', sans-serif;
    font-size:54px;
    line-height:1;
    font-weight:700;
    text-transform:uppercase;
    color:#33bfad;
    margin-bottom:25px;
}




.collection-label{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.collection-label::before{
    content:'';
    width:20px;
    height:2px;
    background:#33bfad;
    display:block;
}

.collection-label span{
    color:#33bfad;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    line-height:1;
    font-family:Arial, sans-serif;
}


/* Pricing Section Wrap */
.pricing-section {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}



/* Card Structure */
.pricing-card {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eaeaea;
}

/* Gray Image Area Placeholders */
.card-header {
    background-color: #f4f4f4;
    height: 240px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.placeholder-text {
    color: #a0a0a0;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.5px;
    line-height: 1.6;
}

/* Centered Top Badge over Card 1 */
.badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #33bfad;
    color: #333;
    font-size: 11px;
    font-weight: bold;
    padding: 6px 16px;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Content Blocks */
.card-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tagline {
    color: #33bfad;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.card-title {
    color: #333;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    line-height: 1.2;
}

.card-description {
    color: #666;
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-description strong {
    color: #333;
}

/* Technical Specification Strips */
.card-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-top: auto;
    margin-bottom: 25px;
    text-align: center;
}

/* Label element style (DURATION, SIZE, START) */
.card-specs h4 {
    color: #aaa;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* Value element style (6 MONTHS, 6 X 9 IN, etc.) */
.card-specs h5 {
    color: #333;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.4;
}

/* Bottom Actions & Price Tags */
.card-footer {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.bonus-text {
    color: #33bfad;
    font-size: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Link element styled as button block */
.cta-button {
    display: block;
    text-align: center;
    text-decoration: none;
    background-color: #33bfad;
    color: #333;
    border: none;
    padding: 14px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
    transition: background-color 0.2s, opacity 0.2s;
}

.cta-button:hover {
    opacity: 0.9;
}

.pricing-card:nth-child(2) .cta-button,
.pricing-card:nth-child(3) .cta-button {
    margin-top: 15px;
}

/* Responsive Grid setup */
.all-cards-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}



/* Section Base Formatting Container */
.pricing-section {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
    padding: 60px 20px;
    background-color: #ffffff;
}


/* Header Content Layout Styles */
.comparison-header {
    max-width: 900px;
    margin-bottom: 40px;
}

.comparison-header .sub-title {
    color: #33bfad;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.comparison-header .sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background-color: #33bfad;
}

.comparison-header .main-title {
    color: #333;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.comparison-header .teal-text {
    color: #33bfad;
}

.comparison-header .lead-text {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
}

/* ----------------------------------------------------
   Desktop Layout: Grid-based row columns rules
   ---------------------------------------------------- */
.all-cards-box.comparison-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #f0f0f0;
}

.table-row {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 20px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* Sidebar Feature Column Titles */
.label-cell {
    font-weight: bold;
    color: #333;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Specific Top Header Row Rules */
.header-row {
    background-color: #232b2e;
    border-bottom: none;
}

.header-row .table-cell {
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 18px 20px;
}

.header-row .label-cell {
    color: #a0aab0;
}

/* Interchanging Row Color Styling Blocks */
.striped-row {
    background-color: #f7f9fa;
}

/* Feature Unordered Lists Markup styling Rules */
.feature-list ul {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 13.5px;
    color: #555;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #33bfad;
    font-weight: bold;
}

/* Custom Text and Component Badges */
.badge-outline {
    display: inline-block;
    border: 1px solid #33bfad;
    color: #333;
    font-size: 11px;
    font-weight: bold;
    padding: 5px 12px;
    letter-spacing: 0.5px;
}

.teal-badge {
    display: inline-block;
    background-color: #33bfad;
    color: #333;
    font-size: 10px;
    font-weight: bold;
    padding: 6px 10px;
    letter-spacing: 0.5px;
}

.text-muted {
    color: #777;
}

.price-row .table-cell:not(.label-cell) {
    font-size: 20px;
    font-weight: bold;
}

/* Action Button Layout Elements inside Table Columns */
.cta-link-btn {
    display: block;
    width: 100%;
    background-color: #33bfad;
    color: #333;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    padding: 14px 10px;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

.cta-link-btn:hover {
    opacity: 0.9;
}

/* Bottom Center Full Collection Button Wrapper formatting */
.footer-action {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.outline-collection-btn {
    display: inline-block;
    border: 2px solid #333;
    color: #333;
    background-color: transparent;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 16px 40px;
    transition: background-color 0.2s, color 0.2s;
}

.outline-collection-btn:hover {
    background-color: #333;
    color: #fff;
}

/* Dark Theme Section Frame Wrapper */
.feature-dark-theme {
    background-color: #232b2e; /* Dark slate background as shown in image */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
    padding: 80px 20px;
}



/* Header Component Element Rules */
.feature-header {
    max-width: 850px;
    margin-bottom: 60px;
}

.feature-header .sub-title {
    color: #33bfad;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.feature-header .sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background-color: #33bfad;
}

.feature-header .main-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.feature-header .teal-text {
    color: #33bfad;
}

.feature-header .lead-text {
    color: #9aa5a9;
    font-size: 14.5px;
    line-height: 1.7;
}

/* ----------------------------------------------------
   Responsive Grid Block System for items
   ---------------------------------------------------- */
.all-cards-box.feature-grid {
    display: grid;
    /* Default Setup: 3 clean columns layout structure for desktop viewports */
    grid-template-columns: repeat(3, 1fr);
    /* Internal clean dividing grid border lines setup styling rules */
    gap: 1px;
    background-color: #313a3d; /* Simulates standard fine inner grid lines */
    width: 100%;
    border: 1px solid #313a3d;
}

/* Individual Feature Block Inside Cell Elements */
.feature-card {
    background-color: #232b2e; /* Matches top wrapper frame background */
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
}

/* Icon / Emoji Placeholder styling configurations */
.icon-wrap {
    font-size: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.icon-wrap.color-green {
    color: #33bfad;
    font-weight: bold;
}

.feature-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-desc {
    color: #838f94;
    font-size: 13.5px;
    line-height: 1.6;
}

/* Deep Dark Theme Container Wrapper */
.expert-profile-section {
    background-color: #232b2e;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
    padding: 80px 20px;
}



/* Responsive Structural Layout */
.all-cards-box.expert-layout-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr; /* Matches the narrow layout block scale */
    gap: 50px;
    width: 100%;
    align-items: start;
}

/* ----------------------------------------------------
   Left Column: Media and Dynamic Statistics
   ---------------------------------------------------- */
.expert-media-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Fixed Aspect Ratio Image Area */
.expert-image-wrap {
    width: 100%;
    height: 480px; /* Aligns visually with text textblocks */
    overflow: hidden;
    background-color: #313a3d;
}

.expert-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Quad Stats Panel Wrapper */
.expert-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    color: #33bfad;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-label {
    color: #838f94;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* ----------------------------------------------------
   Right Column: Profile Text and Badges Block
   ---------------------------------------------------- */
.expert-content-column {
    display: flex;
    flex-direction: column;
}

.expert-content-column .sub-title {
    color: #838f94; /* Light slate tag color from text */
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.expert-content-column .sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background-color: #33bfad;
}

.expert-content-column .main-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.expert-content-column .teal-text {
    color: #33bfad;
}

/* Structured Body Block Layout Rules */
.bio-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.bio-text p {
    color: #9aa5a9;
    font-size: 14.5px;
    line-height: 1.7;
}

/* Footer Accent Inline Badge Lists */
.expert-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-badge {
    background-color: #2f383b;
    color: #838f94;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    display: inline-block;
}


/* --- Global Section Settings --- */
.financial-planning-section {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #555555;
  line-height: 1.6;
  background-color: #ffffff;
  padding-top: 60px;
}

/* --- Layout Grid --- */
.fp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* --- Typography & Highlights --- */
.fp-sub-header {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #a0a0a0;
  margin-bottom: 15px;
  position: relative;
}

.fp-sub-header::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #33bfad;
  vertical-align: middle;
  margin-right: 10px;
}

.fp-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #232b2e;
  margin-top: 0;
  margin-bottom: 30px;
}

.text-highlight {
  color: #33bfad;
}

.fp-text {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: #4a5558;
}

/* --- Cards / Comparison Boxes --- */
.fp-comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.fp-card {
  border: 1px solid #eef2f3;
  padding: 25px;
  border-radius: 4px;
  background: #ffffff;
}

.fp-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 20px;
}

.fp-card-muted {
  color: #a0a0a0;
}

.fp-card-primary {
  color: #33bfad;
}

.fp-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fp-card-list li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  color: #4a5558;
}

.fp-card-list li:last-child {
  margin-bottom: 0;
}

/* List Prefixes */
.list-negative li::before {
  content: "x";
  position: absolute;
  left: 0;
  color: #cc0000;
  font-weight: bold;
}

.list-positive li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #33bfad;
  font-weight: bold;
}

/* --- Side Column Features --- */
.fp-callout-box {
  background-color: #232b2e;
  color: #ffffff;
  padding: 35px;
  border-radius: 4px;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 40px;
}

.fp-callout-box p {
  margin: 0;
}

.fp-features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fp-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.fp-feature-icon {
  font-size: 1.5rem;
  line-height: 1;
  padding-top: 3px;
}

.fp-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #232b2e;
  margin-top: 0;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.fp-feature-desc {
  font-size: 0.95rem;
  margin: 0;
  color: #606f7b;
}

/* --- Bottom Feedback Banner --- */
.fp-feedback-banner {
  background-color: #232b2e;
  padding: 60px 0;
  margin-top: 80px;
}

.fp-feedback-banner .fp-sub-header {
  margin-bottom: 20px;
}

.fp-feedback-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}

.mobile-break {
  display: none;
}


/* --- Global Section Settings --- */
.shop-planning-section {
  line-height: 1.6;
  background-color: #ffffff;
  padding: 60px 0;
	background-color: #F5F6F7;
}

/* --- Layout Grid --- */
.sp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* --- Typography & Elements --- */
.sp-sub-header {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #33bfad;
  margin-bottom: 15px;
  position: relative;
}

.sp-sub-header::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #33bfad;
  vertical-align: middle;
  margin-right: 10px;
}

.sp-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #232b2e;
  margin-top: 0;
  margin-bottom: 30px;
}

.text-highlight {
  color: #33bfad;
}

.text-highlight-light {
  color: #6edbce;
}

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

.sp-text {
  font-size: 1.05rem;
  margin-bottom: 45px;
  color: #606f7b;
}

/* --- Workflow Progression Timeline --- */
.sp-section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #232b2e;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.sp-workflow-wrapper {
  display: flex;
  flex-direction: column;
}

.sp-step-item {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #eef2f3;
  align-items: flex-start;
}

.sp-step-item:first-of-type {
  border-top: 1px solid #eef2f3;
}

.sp-step-badge {
  background-color: #33bfad;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #232b2e;
  margin-top: 0;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.sp-step-desc {
  font-size: 0.95rem;
  margin: 0;
  color: #606f7b;
}

/* --- Right Side Shop Box --- */
.sp-shop-card {
  border: 1px solid #eef2f3;
  padding: 40px;
  background: #ffffff;
  text-align: left;
}

.sp-card-category {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #a0a0a0;
  margin-bottom: 10px;
}

.sp-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #232b2e;
  margin: 0 0 10px 0;
}

.sp-card-tagline {
  font-size: 0.95rem;
  color: #6edbce;
  margin: 0 0 30px 0;
}

/* Products Action Bars */
.sp-products-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.sp-product-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #232b2e;
  color: #ffffff;
  padding: 16px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
}

.sp-product-btn:hover {
  opacity: 0.95;
}

.sp-product-btn .prod-price {
  color: #33bfad;
}

/* Lower Collection Button */
.sp-collection-btn {
  display: block;
  text-align: center;
  border: 1px solid #eef2f3;
  color: #33bfad;
  padding: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 25px;
  transition: background-color 0.2s ease;
}

.sp-collection-btn:hover {
  background-color: #fafbfc;
}

.sp-card-footer {
  font-size: 0.8rem;
  color: #a0a0a0;
  text-align: center;
  margin: 0;
}

/* --- Global Section Settings --- */
.nil-education-section {
  padding: 60px 0px;
  background-color: #ffffff;
  color: #2a2d30;
  line-height: 1.6;
}

/* --- Responsive Layout Grid --- */
.nil-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}



/* --- Left Column Elements --- */
.nil-subtitle {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
  margin-bottom: 20px;
  position: relative;
  padding-left: 35px;
}

.nil-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 25px;
  height: 2px;
  background-color: #33bfad;
  transform: translateY(-50%);
}

.nil-main-heading {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.nil-lead-text {
  font-size: 1.15rem;
  color: #2a2d30;
  font-weight: 500;
  margin-bottom: 25px;
}

.nil-body-text {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 25px;
}

.nil-btn {
  display: inline-block;
  background-color: #33bfad;
  color: #2a2d30;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 15px 30px;
  margin-top: 15px;
  transition: background-color 0.2s ease;
}

.nil-btn:hover {
  background-color: #289b8c;
}

/* --- Right Column Elements --- */
.nil-feature-item {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  padding-bottom: 25px;
}

.nil-feature-item:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.nil-feature-title {
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #33bfad;
  margin-top: 0;
  margin-bottom: 12px;
}

.nil-feature-desc {
  font-size: 0.95rem;
  color: #555555;
  margin: 0;
  line-height: 1.5;
}

/* --- Core Section & Typography --- */
.nil-services-section {
  padding: 80px 0px;
  background-color: #ffffff;
  color: #2a2d30;
}

/* --- Section Header Layout --- */
.nil-header {
  text-align: center;
  margin-bottom: 50px;
}

.nil-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-top-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #2a2d30;
  margin-top: 15px;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

/* --- Flexible Layout Grid --- */
.nil-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}



/* --- Card Base Styling --- */
.nil-service-card {
  box-sizing: border-box;
  border: 1px solid #e2e8f0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.nil-icon-box {
  width: 44px;
  height: 44px;
  background-color: rgba(51, 191, 173, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-bottom: 25px;
}

.nil-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2a2d30;
  letter-spacing: -0.2px;
  margin-top: 0;
  margin-bottom: 15px;
}

.nil-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  margin-top: 0;
  margin-bottom: 30px;
  flex-grow: 1; /* Ensures buttons push to the bottom evenly */
}

/* --- Elements: Buttons & Action Blocks --- */
.nil-card-action {
  margin-top: auto;
}

.nil-solid-btn {
  display: inline-block;
  background-color: #33bfad;
  color: #2a2d30;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.8px;
  padding: 14px 28px;
  transition: background-color 0.2s ease;
}

.nil-solid-btn:hover {
  background-color: #25a494;
}

/* --- Elements: Inline Keyword Tags (Card 2) --- */
.nil-tags-wrapper {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nil-text-tag {
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  background-color: #f8fafc;
  color: #64748b;
  padding: 6px 12px;
  border: 1px solid #e2e8f0;
}


/* --- Core Banner Section Layout --- */
.nil-banner-section {
  background-color: #2a2d30;
  padding: 60px 0px;
  text-align: center;
}

.nil-banner-content {
  max-width: 900px;
  margin: 0 auto;
}

/* --- Inline Visual Tag --- */
.nil-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.nil-banner-tag::before,
.nil-banner-tag::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  background-color: #33bfad;
}

/* --- Primary Typography --- */
.nil-banner-title {
  color: #ffffff;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --- Core Section Setup --- */
.nil-metrics-section {
  background-color: #000;
  padding: 60px 0px;
  text-align: center;
}

/* --- Flexible Layout Grid --- */
.nil-metrics-grid {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}



/* --- Metrics Grid Items --- */
.nil-metric-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  margin: 0 auto;
}

/* --- Metric Numbers --- */
.nil-metric-number {
  color: #33bfad;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  line-height: 1;
  text-transform: uppercase;
}

/* --- Supporting Text --- */
.nil-metric-text {
  color: #ffffff;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}

/* --- Detail Styling (Underline) --- */
.nil-link-style {
  text-decoration: underline;
  text-underline-offset: 3px;
}



/* --- Core Section Config --- */
.nil-program-gets-section {
  background-color: #f8fafc;
  padding: 80px 0px;
  color: #2a2d30;
}

/* --- Layout Architecture --- */
.nil-program-layout {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}


/* --- Left Column Elements --- */
.nil-program-header {
  margin-bottom: 35px;
}

.nil-program-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-program-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-program-title {
  font-size: 2.35rem;
  font-weight: 800;
  margin-top: 12px;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

/* --- Interactive Checkbox List --- */
.nil-checkmark-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nil-checkmark-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
}

.nil-checkmark-item:last-child {
  border-bottom: none;
}

.nil-check-icon {
  width: 24px;
  height: 24px;
  background-color: rgba(51, 191, 173, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.nil-check-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a5568;
  margin: 0;
}

/* --- Right Column Sidebar Cards --- */
.nil-program-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nil-sidebar-card {
  background-color: #ffffff;
  border-left: 3px solid #33bfad;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.nil-sidebar-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 12px;
}

.nil-sidebar-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #718096;
  margin: 0;
}

/* --- Core Section Settings --- */
.nil-testimonials-section {
  background-color: #ffffff;
  padding: 80px 0px;
  color: #2a2d30;
}

/* --- Section Heading Block --- */
.nil-section-title-block {
  margin-bottom: 50px;
  max-width: 900px;
}

.nil-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-top-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-section-heading {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

/* --- Flexible Layout System --- */
.nil-testimonials-layout {
  display: flex;
  gap: 30px;
}

.nil-top-testimonials-row {
  display: flex;
  gap: 30px;
}
.nil-top-testimonials-row {
	flex-wrap: wrap;}
article.nil-testimonial-card {
    width: 100%;
	max-width:48%;
}
/* --- Testimonial Card Styling --- */
.nil-testimonial-card {
  box-sizing: border-box;
  background-color: #f8fafc;
  border-top: 3px solid #33bfad;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.nil-stars-row {
  color: #ffb100;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.nil-quote-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #4a5568;
  margin: 0 0 30px 0;
  font-style: italic;
  font-weight: 400;
  flex-grow: 1;
}

/* --- Author Information Info --- */
.nil-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nil-author-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #2a2d30;
}

.nil-author-title {
  font-size: 0.8rem;
  color: #718096;
  line-height: 1.4;
}


/* --- Core Section Settings --- */
.nil-game-plan-section {
  background-color: #2a2d30;
  padding: 60px 0px;
  box-sizing: border-box;
}

/* --- Flexible Layout Architecture --- */
.nil-game-plan-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}



/* --- Inline Top Tag Styling --- */
.nil-tag-wrapper {
  margin-bottom: 15px;
}

.nil-ready-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-ready-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

/* --- Main Typography Section --- */
.nil-game-plan-heading {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --- Interactive Action Elements --- */
.nil-square-btn {
  display: inline-block;
  background-color: #33bfad;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 16px 32px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.nil-square-btn:hover {
  background-color: #28a393;
}


/* --- Base Component Setup --- */
.nil-pressure-section {
  padding: 70px 0px;
  background-color: #ffffff;
  color: #2a2d30;
  box-sizing: border-box;
}

/* --- Layout Flex Grid --- */
.nil-pressure-grid {
  display: flex;
  gap: 50px;
}


/* --- Main Left Column Design Elements --- */
.nil-tag-block {
  margin-bottom: 20px;
}

.nil-pressure-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-pressure-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-pressure-heading {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.15;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.nil-lead-para {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 25px;
  font-weight: 400;
}

.nil-body-para {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #718096;
  margin-bottom: 25px;
}

.nil-btn-block {
  margin-top: 35px;
}

.nil-pressure-btn {
  display: inline-block;
  background-color: #33bfad;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 16px 32px;
  transition: background-color 0.2s ease;
}

.nil-pressure-btn:hover {
  background-color: #28a393;
}

/* --- Right Column Sidebar Elements --- */
.nil-sidebar-row {
  border-top: 1px solid #e2e8f0;
  padding-top: 22px;
  padding-bottom: 25px;
}

.nil-sidebar-row:last-child {
  border-bottom: 1px solid #e2e8f0;
}

.nil-row-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #33bfad;
  margin-bottom: 12px;
}

.nil-row-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #4a5568;
  margin: 0;
}

/* --- Core Section Structure --- */
.nil-org-benefits-section {
  background-color: #F5F6F7;
  padding: 80px 0px;
  color: #2a2d30;
  box-sizing: border-box;
}
.page-id-1417 .nil-org-benefits-section {
  background-color: #fff;
}
/* --- Layout Split Columns --- */
.nil-org-layout-grid {
  display: flex;
  gap: 60px;
}



/* --- Left Main Column Details --- */
.nil-tag-block {
  margin-bottom: 15px;
}

.nil-org-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-org-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-org-heading {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.15;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

/* --- Interactive List Row Setup --- */
.nil-bullet-list {
  display: flex;
  flex-direction: column;
}

.nil-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #edf2f7;
}

.nil-bullet-item:last-child {
  border-bottom: none;
}

.nil-check-wrapper {
  width: 22px;
  height: 22px;
  background-color: rgba(51, 191, 173, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.nil-bullet-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #4a5568;
  margin: 0;
}

/* --- Right Sidebar Layout Containers --- */
.nil-org-sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.nil-sidebar-card {
  border-left: 3px solid #33bfad;
  padding: 10px 0 10px 25px;
  background-color: transparent;
}

.nil-sidebar-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 15px;
  letter-spacing: -0.3px;
}

.nil-sidebar-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #718096;
  margin: 0;
}


/* --- Base Layout Component --- */
.nil-stats-banner {
  background-color: #2a2d30;
  padding: 40px 0px;
  box-sizing: border-box;
}

/* --- Flexible Alignment Grid --- */
.nil-stats-wrapper {
  display: flex;
  gap: 30px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}


/* Container styling */
.planner-comparison-section {
  padding: 0 15px;
  color: #2a2d30;
}

/* Base Table Styling */
.planner-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

/* Headers */
.planner-table thead th {
  background-color: #2a2d30;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 18px 15px;
  font-weight: 700;
  width: 25%;
}

.planner-table thead th.header-corner {
  background-color: #2a2d30;
}

/* Rows & Alternating Backgrounds */
.planner-table tbody tr {
  background-color: #ffffff;
}

.planner-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.planner-table td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #eaeaea;
  line-height: 1.5;
}

/* Feature Name Column */
.planner-table td.feature-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  color: #2a2d30;
  letter-spacing: 0.5px;
  width: 15%;
}

/* Lists (Good For Section) */
.checkmark-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checkmark-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #55585d;
}

.checkmark-list li:last-child {
  margin-bottom: 0;
}

/* Custom Checkmark Symbol */
.checkmark-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #33BFAD;
  font-weight: bold;
  font-size: 14px;
}

/* Badges */
.badge-outline {
  display: inline-block;
  border: 1px solid #33BFAD;
  color: #2a2d30;
  padding: 6px 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.badge-solid {
  display: inline-block;
  background-color: #33BFAD;
  color: #ffffff;
  padding: 6px 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

/* Price Stylings */
.price-text {
  font-size: 20px;
  font-weight: 700;
  color: #2a2d30;
}

/* CTA Buttons */
.btn-shop {
  display: block;
  text-align: center;
  background-color: #33BFAD;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 11px;
  padding: 12px 10px;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
}

.btn-shop:hover {
  background-color: #279688;
}


/* Responsive Layout for Mobile Devices (Max 768px) */
@media screen and (max-width: 768px) {
  
  /* Hide the native table header */
  .planner-table thead {
    display: none;
  }
  
  .planner-table, 
  .planner-table tbody, 
  .planner-table tr, 
  .planner-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Separate the table into distinct product blocks */
  .planner-table tbody tr {
    margin-bottom: 30px;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background-color: #ffffff !important;
  }

  /* Hide the label column rows that act as row breaks */
  .planner-table td.feature-title {
    display: none;
  }

  /* Format individual rows to mimic a standalone card view */
  .planner-table td {
    text-align: right;
    padding: 12px 15px;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
    padding-left: 45%;
  }

  /* Dynamically inject the product edition labels from custom HTML attributes */
  .planner-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    color: #2a2d30;
    text-align: left;
    width: 40%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Adjust alignment rules for specialized content blocks */
  .planner-table td.price-text {
    font-size: 18px;
  }

  .checkmark-list {
    text-align: left;
  }
  
  .row-good-for td {
    padding-left: 15px;
  }
  
  .row-good-for td::before {
    display: none;
  }

  /* Display layout optimization for buttons in mobile card views */
  .row-order td {
    padding-left: 15px;
  }
  
  .row-order td::before {
    display: none;
  }
  
  .btn-shop {
    width: 100%;
  }
}

/* --- Metric Block Details --- */
.nil-stat-block {
  flex: 1;
}

.nil-stat-num {
  color: #33bfad;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
}

.nil-stat-label {
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #a0aec0;
  margin: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

/* --- Visual Separators (Desktop Only) --- */
.nil-stats-divider {
  display: none;
}



/* --- Core Container Settings --- */
.nil-problem-section {
  background-color: #f5f7f8;
  padding: 80px 20px;
  color: #2a2d30;
  box-sizing: border-box;
}

/* --- Flexible Layout Setup --- */
.nil-problem-grid {
  display: flex;
  gap: 50px;
  margin: 0 auto;
}



/* --- Left Column Layout & Typo --- */
.nil-tag-block {
  margin-bottom: 15px;
}

.nil-problem-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-problem-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-problem-heading {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.nil-highlight-text {
  color: #33bfad;
}

.nil-problem-lead {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #718096;
  margin-bottom: 40px;
}

/* --- Features List Layout --- */
.nil-problem-list {
  display: flex;
  flex-direction: column;
}

.nil-problem-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #edf2f7;
}

.nil-problem-list-item:last-child {
  border-bottom: none;
}

.nil-problem-icon-wrapper {
  width: 32px;
  height: 32px;
  background-color: rgba(51, 191, 173, 0.08);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nil-problem-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 6px;
}

.nil-problem-item-desc {
  font-size: 0.88rem;
  line-height: 1.4;
  color: #718096;
  margin: 0;
}

/* --- Right Column Dark Card Layout --- */
.nil-quote-card {
  background-color: #2a2d30;
  border-top: 4px solid #33bfad;
  padding: 40px;
  box-sizing: border-box;
  margin-bottom: 35px;
}

.nil-quote-main {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.65;
  font-style: italic;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.nil-quote-author {
  display: block;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #33bfad;
}

/* --- Sidebar Body Paragraphs --- */
.nil-problem-secondary-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nil-secondary-para {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4a5568;
  margin: 0;
}

/* --- Core Section Settings --- */
.nil-workbook-section {
  background-color: #ffffff;
  padding: 80px 0px;
  color: #2a2d30;
  box-sizing: border-box;
}

/* --- Section Heading Typography Block --- */
.nil-title-block {
  margin: 0 auto 60px auto;
  text-align: left;
}

.nil-tag-wrapper {
  margin-bottom: 15px;
}

.nil-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-top-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-main-heading {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.nil-highlight-text {
  color: #33bfad;
}

.nil-intro-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #718096;
  margin: 0;
}

/* --- Responsive Layout Columns --- */
.nil-workbook-grid {
  display: flex;
  gap: 40px;
}



/* --- Individual Column Card Construction --- */
.nil-column-card {
  box-sizing: border-box;
  flex: 1;
  border-top: 1px solid #edf2f7;
  padding: 40px 15px 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* --- Internal Card Content Formatting --- */
.nil-card-icon-box {
  width: 36px;
  height: 36px;
  background-color: rgba(51, 191, 173, 0.08);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.nil-card-tag {
  display: block;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #33bfad;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.nil-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.nil-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #718096;
  margin-top: 0;
  margin-bottom: 35px;
}

/* --- Card Criteria Checklists --- */
.nil-criteria-block {
  margin-bottom: 40px;
}

.nil-criteria-title {
  display: block;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #a0aec0;
  margin-bottom: 15px;
}

.nil-checkmark-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nil-checkmark-item {
  position: relative;
  padding-left: 24px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #4a5568;
}

/* Inlined Checkmark Visual Asset via CSS pseudo element */
.nil-checkmark-item::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #33bfad;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* --- Card Action Button Footer Anchor --- */
.nil-solid-action-btn {
  display: block;
  box-sizing: border-box;
  background-color: #33bfad;
  color: #2a2d30;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  padding: 16px 20px;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.nil-solid-action-btn:hover {
  background-color: #28a393;
}

/* ==========================================================================
   1. Conversion Bar Module
   ========================================================================== */
.nil-conversion-bar-section {
  background-color: #2a2d30;
  border-top: 4px solid #33bfad;
  padding: 35px 0px;
  box-sizing: border-box;
}

.nil-conversion-layout {
  display: flex;
      justify-content: space-between;
  gap: 25px;
}



/* Typography & Tags */
.nil-tag-block {
  margin-bottom: 12px;
}

.nil-conversion-tag,
.nil-tools-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #33bfad;
}

.nil-conversion-tag::before,
.nil-tools-tag::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: #33bfad;
}

.nil-conversion-heading {
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.3px;
}

/* Pricing and Buttons */
.nil-price-display {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.nil-price-amount {
  color: #ffffff;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
}

.nil-price-bonus {
  color: #a0aec0;
  font-size: 0.62rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.nil-conversion-btn {
  display: inline-block;
  background-color: #33bfad;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 14px 28px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.nil-conversion-btn:hover {
  background-color: #28a393;
}

.nil-shipping-note {
  display: block;
  font-size: 0.65rem;
  color: #718096;
  margin-top: 6px;
}

/* ==========================================================================
   2. Tools Intro Content Module
   ========================================================================== */
.nil-tools-intro-section {
  background-color: #2a2d30;
  padding: 60px 0px;
  box-sizing: border-box;
}



.nil-tools-heading {
  color: #ffffff;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.nil-highlight-teal {
  color: #33bfad;
}

.nil-tools-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5e0;
  margin: 0;
  font-weight: 400;
}

/* --- Core Interface Setup --- */
.nil-checkout-section {
  background-color:#f5f7f8;
  padding: 80px 20px;
  color: #2a2d30;
  box-sizing: border-box;
}

/* --- Responsive Split Grid Layout --- */
.nil-checkout-split-layout {
  display: flex;
  gap: 50px;
}



/* ==========================================================================
   Left Information Panel Styles
   ========================================================================== */
.nil-badge-wrapper {
  margin-bottom: 25px;
}

.nil-promo-badge {
  background-color: #ffb800;
  color: #2a2d30;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 6px 12px;
  text-transform: uppercase;
}

.nil-tag-block,
.nil-include-tag-block {
  margin-bottom: 12px;
}

.nil-panel-tag,
.nil-include-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #a0aec0;
}

.nil-panel-tag::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: #a0aec0;
}

.nil-panel-heading {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.2;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.nil-highlight-teal {
  color: #33bfad;
}

.nil-panel-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #718096;
  margin-bottom: 35px;
}

/* Checklist Shared Core Elements */
.nil-feature-checklist,
.nil-invoice-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nil-checklist-item,
.nil-invoice-item {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #4a5568;
}

.nil-checklist-item::before,
.nil-invoice-item::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #33bfad;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ==========================================================================
   Right Checkout Panel Card Styles
   ========================================================================== */
.nil-checkout-pricing-panel {
  box-sizing: border-box;
  background-color: #ffffff;
  border: 1px solid #edf2f7;
  border-top: 4px solid #33bfad;
  padding: 40px 30px;
  position: relative;
}

/* Corner Floating Golden Ribbon Badge */
.nil-panel-badge-row {
  position: absolute;
  top: 0;
  right: 25px;
  transform: translateY(-100%);
}

.nil-gold-tag {
  background-color: #ffb800;
  color: #2a2d30;
  font-size: 0.62rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  display: inline-block;
}

.nil-brand-subhead {
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #33bfad;
  margin-bottom: 6px;
}

.nil-product-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #2a2d30;
  margin: 0 0 4px 0;
  letter-spacing: -0.3px;
}

.nil-product-edition {
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #33bfad;
  margin-bottom: 30px;
}

.nil-invoice-checklist {
  margin-bottom: 30px;
}

.nil-invoice-item {
  font-size: 0.85rem;
  color: #4a5568;
}

/* Pricing Grid Block */
.nil-pricing-matrix {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.nil-main-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2a2d30;
  line-height: 1;
}

.nil-total-value {
  font-size: 0.75rem;
  font-weight: bold;
  color: #33bfad;
  letter-spacing: 0.5px;
}

.nil-shipping-terms {
  font-size: 0.72rem;
  color: #a0aec0;
  margin-top: 0;
  margin-bottom: 25px;
}

/* Call To Action Buttons Elements */
.nil-btn-wrapper {
  margin-bottom: 20px;
}

.nil-checkout-btn {
  display: block;
  box-sizing: border-box;
  background-color: #33bfad;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  padding: 16px 20px;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.nil-checkout-btn:hover {
  background-color: #28a393;
}

/* Trust Indicators Layout Footer */
.nil-trust-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  color: #a0aec0;
}

.nil-dot-divider {
  font-size: 0.5rem;
}





/* --- Core Section Config --- */
.nil-tools-matrix-section {
  background-color: #2a2d30;
  padding: 60px 0px;
  box-sizing: border-box;
}

/* --- Responsive Layout Multi-Column Grid --- */
.nil-matrix-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}



/* --- Grid Grid Item Box Layout --- */
.nil-matrix-item {
  box-sizing: border-box;
  padding: 40px 30px;
  border-bottom: 1px solid #3e4246;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}



/* --- Internal Matrix Content Styling --- */
.nil-matrix-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 20px;
}

.nil-matrix-title {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.nil-matrix-desc {
  color: #a0aec0;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}


/* --- Core Section Config --- */
.nil-coach-section {
  background-color: #ffffff;
  padding: 80px 0px;
  color: #2a2d30;
  box-sizing: border-box;
}

/* --- Responsive 2-Column Grid Layout --- */
.nil-coach-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .nil-coach-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .nil-coach-media-col {
    flex: 0 0 42%;
    position: sticky;
    top: 40px;
  }
  
  .nil-coach-content-col {
    flex: 0 0 53%;
  }
}

/* --- Left Column Image Formatting --- */
.nil-image-wrapper {
  width: 100%;
  background-color: #f7f9fa;
  overflow: hidden;
  display: flex;
}

.nil-coach-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* --- Right Column Heading Elements --- */
.nil-tag-block {
  margin-bottom: 15px;
}

.nil-coach-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-coach-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-coach-heading {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

.nil-highlight-teal {
  color: #33bfad;
}

/* --- Metrics Grid Bar Layout --- */
.nil-coach-metrics-bar {
  background-color: #2a2d30;
  display: flex;
  margin-bottom: 35px;
}



.nil-coach-metric-item {
  flex: 1;
  padding: 20px 15px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #3e4246;
}



.nil-metric-value {
  color: #33bfad;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.nil-metric-lbl {
  color: #a0aec0;
  font-size: 0.6rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* --- Biography Typography --- */
.nil-coach-biography {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.nil-bio-para {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #718096;
  margin: 0;
}

/* --- Dark Bottom Accent Label --- */
.nil-coach-footer-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #2a2d30;
  padding: 10px 20px;
  box-sizing: border-box;
}

.nil-trophy-icon {
  font-size: 0.9rem;
  line-height: 1;
}

.nil-footer-label-text {
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 1px;
}


/* --- Core Section Config --- */
.nil-promise-section {
 background-color: #f5f7f8;
  padding: 80px 20px;
  color: #2a2d30;
  box-sizing: border-box;
}

/* --- Responsive 2-Column Split Grid --- */
.nil-promise-grid {
  display: flex;
  gap: 40px;
}



/* --- Left Column Badge Details --- */
.nil-check-circle {
  width: 76px;
  height: 76px;
  border: 1px solid #33bfad;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.nil-badge-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #33bfad;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.nil-badge-subtext {
  font-size: 0.72rem;
  line-height: 1.4;
  color: #a0aec0;
  text-transform: lowercase;
}

/* --- Right Column Heading Layout --- */
.nil-tag-block {
  margin-bottom: 15px;
}

.nil-promise-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-promise-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-promise-heading {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.nil-highlight-teal {
  color: #33bfad;
}

/* --- Explanatory Copy Typography --- */
.nil-promise-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.nil-promise-para {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #718096;
  margin: 0;
}

/* --- Call To Action Layout Element --- */
.nil-btn-wrapper {
  display: flex;
}

.nil-promise-btn {
  display: inline-block;
  background-color: #33bfad;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 16px 36px;
  transition: background-color 0.2s ease;
  text-transform: uppercase;
}

.nil-promise-btn:hover {
  background-color: #28a393;
}

/* --- Core Section Config --- */
.nil-qualification-section {
  background-color: #ffffff;
  padding: 80px 0px;
  color: #2a2d30;
  box-sizing: border-box;
}

/* --- Top Heading Elements --- */
.nil-qualify-top-block{
	margin-bottom:60px;
}

.nil-tag-block {
  margin-bottom: 15px;
}

.nil-qualify-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-qualify-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-qualify-heading {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.nil-highlight-teal {
  color: #33bfad;
}

.nil-qualify-intro {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #718096;
  margin: 0;
}

/* --- Responsive Split Columns Grid --- */
.nil-qualify-grid {
  display: flex;
  gap: 50px;
}



/* --- Internal Box Subheaders --- */
.nil-column-title-wrapper {
  padding-bottom: 12px;
  border-bottom: 2px solid #33bfad;
  margin-bottom: 20px;
}

.nil-column-title-wrapper.nil-border-gray {
  border-bottom-color: #e2e8f0;
}

.nil-column-title-text {
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 1px;
}


/* --- Core Dark Container Setup --- */
.nil-final-cta-section {
  background-color: #2a2d30;
  padding: 80px 0px;
  color: #ffffff;
  box-sizing: border-box;
}

/* --- Responsive Two-Column Layout Grid --- */
.nil-final-cta-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}


/* ==========================================================================
   Left Column Core Layout Elements
   ========================================================================== */
.nil-tag-block {
  margin-bottom: 15px;
}

.nil-final-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-final-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-final-heading {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.nil-highlight-teal {
  color: #33bfad;
}

.nil-final-lead {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #cbd5e0;
  margin-bottom: 25px;
}

/* Process Timeline List Content Blocks */
.nil-process-timeline {
  display: flex;
  flex-direction: column;
  margin: 45px 0;
}

.nil-timeline-title {
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #a0aec0;
  margin-bottom: 25px;
}

.nil-timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.nil-timeline-step:last-child {
  margin-bottom: 0;
}

.nil-step-number {
  width: 26px;
  height: 26px;
  background-color: rgba(51, 191, 173, 0.15);
  border: 1px solid #33bfad;
  color: #33bfad;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nil-step-title {
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.8px;
  color: #ffffff;
  margin-top: 4px;
  margin-bottom: 8px;
}

.nil-step-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #a0aec0;
  margin: 0;
}

/* Left Bottom Highlight Border Callout */
.nil-left-callout-box {
  border-left: 2px solid #33bfad;
  padding: 5px 0 5px 25px;
  margin-top: 40px;
}

.nil-callout-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #cbd5e0;
  font-style: italic;
  margin: 0;
}

/* ==========================================================================
   Right White Pricing Card Layout Details
   ========================================================================== */
.nil-checkout-card {
  box-sizing: border-box;
  background-color: #ffffff;
  color: #2a2d30;
  padding: 45px 35px;
  text-align: center;
  border-top: 4px solid #33bfad;
}

.nil-card-brand {
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #33bfad;
  margin-bottom: 8px;
}

.nil-card-main-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.nil-card-shipping-info {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #718096;
  margin-top: 0;
  margin-bottom: 35px;
}

/* Central Numeric Price Frame Matrix */
.nil-card-price-block {
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
  padding: 30px 0;
  margin-bottom: 35px;
}

.nil-price-label {
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #a0aec0;
  margin-bottom: 8px;
}

.nil-price-value {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #2a2d30;
  margin-bottom: 6px;
}

.nil-price-sub-value {
  font-size: 0.7rem;
  font-weight: bold;
  color: #33bfad;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Action Trigger Elements */
.nil-card-action-wrapper {
  margin-bottom: 25px;
}

.nil-card-btn {
  display: block;
  box-sizing: border-box;
  background-color: #33bfad;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 16px 20px;
  transition: background-color 0.2s ease;
}

.nil-card-btn:hover {
  background-color: #28a393;
}

.nil-card-trust-terms {
  font-size: 0.72rem;
  line-height: 1.4;
  color: #a0aec0;
  margin: 0;
  max-width: 280px;
  margin: 0 auto;
}



.nil-title-teal {
  color: #33bfad;
}

.nil-title-gray {
  color: #cbd5e0;
}

/* --- Qualification Lists Layout --- */
.nil-criteria-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.nil-text-faded .nil-criteria-text {
  color: #a0aec0;
}

.nil-criteria-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}

.nil-criteria-row:last-child {
  border-bottom: none;
}

/* Icons Core Formatting */
.nil-icon-check {
  color: #33bfad;
  font-size: 0.95rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 3px;
  flex-shrink: 0;
}

.nil-icon-cross {
  color: #cbd5e0;
  font-size: 0.85rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 4px;
  flex-shrink: 0;
}

.nil-criteria-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4a5568;
  margin: 0;
}

/* --- Core Dark Container Setup --- */
.nil-final-cta-section {
  background-color: #2a2d30;
  padding: 80px 0px;
  color: #ffffff;
  box-sizing: border-box;
}

/* --- Responsive Two-Column Layout Grid --- */
.nil-final-cta-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}



/* ==========================================================================
   Left Column Core Layout Elements
   ========================================================================== */
.nil-tag-block {
  margin-bottom: 15px;
}

.nil-final-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-final-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-final-heading {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.nil-highlight-teal {
  color: #33bfad;
}

.nil-final-lead {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #cbd5e0;
  margin-bottom: 25px;
}

/* Process Timeline List Content Blocks */
.nil-process-timeline {
  display: flex;
  flex-direction: column;
  margin: 45px 0;
}

.nil-timeline-title {
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #a0aec0;
  margin-bottom: 25px;
}

.nil-timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.nil-timeline-step:last-child {
  margin-bottom: 0;
}

.nil-step-number {
  width: 26px;
  height: 26px;
  background-color: rgba(51, 191, 173, 0.15);
  border: 1px solid #33bfad;
  color: #33bfad;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nil-step-title {
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.8px;
  color: #ffffff;
  margin-top: 4px;
  margin-bottom: 8px;
}

.nil-step-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #a0aec0;
  margin: 0;
}

/* Left Bottom Highlight Border Callout */
.nil-left-callout-box {
  border-left: 2px solid #33bfad;
  padding: 5px 0 5px 25px;
  margin-top: 40px;
}

.nil-callout-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #cbd5e0;
  font-style: italic;
  margin: 0;
}

/* ==========================================================================
   Right White Pricing Card Layout Details
   ========================================================================== */
.nil-checkout-card {
  box-sizing: border-box;
  background-color: #ffffff;
  color: #2a2d30;
  padding: 45px 35px;
  text-align: center;
  border-top: 4px solid #33bfad;
}

.nil-card-brand {
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #33bfad;
  margin-bottom: 8px;
}

.nil-card-main-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.nil-card-shipping-info {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #718096;
  margin-top: 0;
  margin-bottom: 35px;
}

/* Central Numeric Price Frame Matrix */
.nil-card-price-block {
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
  padding: 30px 0;
  margin-bottom: 35px;
}

.nil-price-label {
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #a0aec0;
  margin-bottom: 8px;
}

.nil-price-value {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #2a2d30;
  margin-bottom: 6px;
}

.nil-price-sub-value {
  font-size: 0.7rem;
  font-weight: bold;
  color: #33bfad;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Action Trigger Elements */
.nil-card-action-wrapper {
  margin-bottom: 25px;
}

.nil-card-btn {
  display: block;
  box-sizing: border-box;
  background-color: #33bfad;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 16px 20px;
  transition: background-color 0.2s ease;
}

.nil-card-btn:hover {
  background-color: #28a393;
}

.nil-card-trust-terms {
  font-size: 0.72rem;
  line-height: 1.4;
  color: #a0aec0;
  margin: 0;
  max-width: 280px;
  margin: 0 auto;
}

/* --- Core Dark Section Architecture Configuration --- */
.nil-summary-section {
  background-color: #2a2d30;
  padding: 80px 0px;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
}

/* ==========================================================================
   Top Headings Copy Layout Content Block
   ========================================================================== */
.nil-summary-top {
  max-width: 850px;
  margin: 0 auto 45px auto;
}

.nil-tag-block {
  margin-bottom: 20px;
}

.nil-summary-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
  text-transform: uppercase;
}

.nil-summary-tag::before,
.nil-summary-tag::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #33bfad;
}

.nil-summary-heading {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.nil-highlight-teal {
  color: #33bfad;
}

.nil-summary-lead {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #cbd5e0;
  max-width: 720px;
  margin: 0 auto;
}

/* ==========================================================================
   Universities Layout Ribbon Component
   ========================================================================== */
.nil-clients-log-row {
  margin-bottom: 55px;
}

.nil-clients-title {
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #718096;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.nil-logo-badge-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.nil-university-badge {
  box-sizing: border-box;
  background-color: #34383c;
  border: 1px solid #3e4246;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 12px 28px;
  display: inline-block;
  min-width: 120px;
}

/* Decorative Baseline Separator */
.nil-horizontal-divider {
  border: none;
  border-top: 1px solid #3e4246;
  max-width: 1100px;
  margin: 0 auto 55px auto;
}

/* ==========================================================================
   Credentials Metrics Grid Component Block
   ========================================================================== */
.nil-dashboard-metrics-row {
  display: flex;
  gap: 40px;
	margin-bottom:40px;
}



.nil-metric-card-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
  margin: 0 auto;
}



.nil-card-metric-num {
  color: #33bfad;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}

.nil-card-metric-lbl {
  color: #a0aec0;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
}

/* ==========================================================================
   Bottom Conversion Trigger Layout Details
   ========================================================================== */
.nil-btn-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.nil-conversion-solid-btn {
  display: inline-block;
  box-sizing: border-box;
  background-color: #33bfad;
  color: #2a2d30;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 16px 36px;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.nil-conversion-solid-btn:hover {
  background-color: #2bcaba;
}

.nil-conversion-fineprint {
  font-size: 0.7rem;
  color: #718096;
  margin: 0;
  font-style: italic;
}

/* --- Core Dark Workspace Settings --- */
.nil-checkout-final-block {
  background-color: #2a2d30;
  padding: 80px 0px;
  color: #ffffff;
  box-sizing: border-box;
}

/* --- Flexible Two-Column Layout Systems --- */
.nil-checkout-grid-system {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}



/* ==========================================================================
   Left Column Layout Options
   ========================================================================== */
.nil-tag-block {
  margin-bottom: 15px;
}

.nil-checkout-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-checkout-top-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-checkout-main-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.nil-teal-text {
  color: #33bfad;
}

.nil-checkout-lead-para {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #cbd5e0;
  margin-bottom: 25px;
}

/* Process Timeline List Blocks */
.nil-process-flow-wrapper {
  display: flex;
  flex-direction: column;
  margin: 45px 0;
}

.nil-process-flow-caption {
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #a0aec0;
  margin-bottom: 25px;
}

.nil-flow-step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.nil-flow-step-item:last-child {
  margin-bottom: 0;
}

.nil-flow-step-num {
  width: 26px;
  height: 26px;
  background-color: rgba(51, 191, 173, 0.15);
  border: 1px solid #33bfad;
  color: #33bfad;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nil-flow-step-title {
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.8px;
  color: #ffffff;
  margin-top: 4px;
  margin-bottom: 8px;
}

.nil-flow-step-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #a0aec0;
  margin: 0;
}

/* Left Lower Highlight Quote Frame */
.nil-left-accent-quote-box {
  border-left: 2px solid #33bfad;
  padding: 5px 0 5px 25px;
  margin-top: 40px;
}

.nil-accent-quote-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #cbd5e0;
  font-style: italic;
  margin: 0;
}

/* ==========================================================================
   Right White Pricing Card Container Setup
   ========================================================================== */
.nil-invoice-payment-card {
  box-sizing: border-box;
  background-color: #ffffff;
  color: #2a2d30;
  padding: 45px 35px;
  text-align: center;
  border-top: 4px solid #33bfad;
}

.nil-invoice-brand-lbl {
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #33bfad;
  margin-bottom: 8px;
}

.nil-invoice-main-heading {
  font-size: 1.45rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.nil-invoice-shipping-subtext {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #718096;
  margin-top: 0;
  margin-bottom: 35px;
}

/* Center Section Divider Numerical Blocks */
.nil-invoice-pricing-block {
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
  padding: 30px 0;
  margin-bottom: 35px;
}

.nil-invoice-pricing-lbl {
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #a0aec0;
  margin-bottom: 8px;
}

.nil-invoice-pricing-value {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #2a2d30;
  margin-bottom: 6px;
}

.nil-invoice-pricing-subtext-val {
  font-size: 0.7rem;
  font-weight: bold;
  color: #33bfad;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Action Control Anchors */
.nil-invoice-action-block {
  margin-bottom: 25px;
}

.nil-invoice-solid-btn {
  display: block;
  box-sizing: border-box;
  background-color: #33bfad;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 16px 20px;
  transition: background-color 0.2s ease;
}

.nil-invoice-solid-btn:hover {
  background-color: #28a393;
}

.nil-invoice-trust-footer-text {
  font-size: 0.72rem;
  line-height: 1.4;
  color: #a0aec0;
  margin: 0;
  max-width: 280px;
  margin: 0 auto;
}

/* --- Core Structural Settings --- */
.nil-worker-problem-section {
  background-color: #ffffff;
  padding: 80px 0px;
  color: #2a2d30;
  box-sizing: border-box;
}

/* --- Flexible Multi-Column Layout Grid --- */
.nil-worker-grid {
  display: flex;
  gap: 50px;
}



/* --- Left Column Core Typography --- */
.nil-tag-block {
  margin-bottom: 15px;
}

.nil-worker-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
}

.nil-worker-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-worker-heading {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.nil-highlight-teal {
  color: #33bfad;
}

.nil-worker-lead {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #718096;
  margin-bottom: 40px;
}

/* --- Interactive Features Item Rows --- */
.nil-worker-list {
  display: flex;
  flex-direction: column;
}

.nil-worker-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid #edf2f7;
}

.nil-worker-list-item:last-child {
  border-bottom: none;
}

.nil-worker-icon-box {
  width: 32px;
  height: 32px;
  background-color: rgba(51, 191, 173, 0.08);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nil-worker-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 6px;
  line-height: 1.3;
}

.nil-worker-item-desc {
  font-size: 0.88rem;
  line-height: 1.45;
  color: #718096;
  margin: 0;
}

/* --- Right Column Sidebar Dark Component Card --- */
.nil-mindset-quote-card {
  background-color: #2a2d30;
  border-top: 4px solid #33bfad;
  padding: 40px;
  box-sizing: border-box;
  margin-bottom: 35px;
}

.nil-mindset-quote-text {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.65;
  font-style: italic;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.nil-mindset-quote-author {
  display: block;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #33bfad;
  text-transform: uppercase;
}

/* --- Lower Body Summary Copy --- */
.nil-worker-secondary-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nil-worker-secondary-para {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4a5568;
  margin: 0;
}

/* --- Core Section Setup --- */
.nil-hardbound-section {
  background-color: #ffffff;
  padding: 60px 0px;
  color: #2a2d30;
  box-sizing: border-box;
}

/* --- Layout Grid Column Management --- */
.nil-hardbound-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}



/* --- Card Construction --- */
.nil-hardbound-card {
  box-sizing: border-box;
  flex: 1;
  border-top: 1px solid #edf2f7;
  padding: 40px 15px 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}



/* --- Internal Core Formatting --- */
.nil-card-icon-frame {
  width: 36px;
  height: 36px;
  background-color: rgba(51, 191, 173, 0.08);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.nil-card-meta-tag {
  display: block;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #33bfad;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.nil-hardbound-title, 
.nil-card-main-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.nil-card-main-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #718096;
  margin-top: 0;
  margin-bottom: 40px;
}

/* --- Checklist Criteria Blocks --- */
.nil-qualification-block {
  margin-bottom: 40px;
}

.nil-qualification-title {
  display: block;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #a0aec0;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.nil-features-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nil-checklist-row {
  position: relative;
  padding-left: 24px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #4a5568;
}

/* Teal Custom Checkmark Layout Icon via Pseudo Element */
.nil-checklist-row::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #33bfad;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* --- Card Action Button Footer Anchor --- */
.nil-action-solid-btn {
  display: block;
  box-sizing: border-box;
  background-color: #33bfad;
  color: #2a2d30;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  padding: 16px 20px;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.nil-action-solid-btn:hover {
  background-color: #28a393;
}


/* --- Core Section Structure Settings --- */
.nil-hourly-cta-section {
  background-color: #2a2d30;
  border-top: 4px solid #33bfad;
  padding: 35px 0px;
  box-sizing: border-box;
}

/* --- Responsive Two-Column Grid Setup --- */
.nil-hourly-cta-layout {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}



/* --- Left Column Tags & Headings --- */
.nil-tag-block {
  margin-bottom: 10px;
}

.nil-hourly-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #33bfad;
  text-transform: uppercase;
}

.nil-hourly-cta-tag::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: #33bfad;
}

.nil-hourly-cta-heading {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

/* --- Right Column Pricing and Button Anchors --- */
.nil-price-display-matrix {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.nil-price-main-amount {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.nil-price-bonus-subtext {
  color: #a0aec0;
  font-size: 0.6rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin-top: 6px;
  text-transform: uppercase;
}

.nil-btn-action-frame {
  width: 100%;
}

.nil-hourly-solid-btn {
  display: inline-block;
  background-color: #33bfad;
  color: #2a2d30;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 15px 30px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  text-transform: uppercase;
}

.nil-hourly-solid-btn:hover {
  background-color: #2bcaba;
}

.nil-shipping-fineprint-text {
  display: block;
  font-size: 0.65rem;
  color: #718096;
  margin-top: 8px;
}

/* ==========================================================================
   1. Tools Overview Intro Header Module
   ========================================================================== */
.nil-tools-header-section {
  background-color: #2a2d30;
  padding: 60px 0px;
  box-sizing: border-box;
}

.nil-tools-header-box {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.nil-tag-block {
  margin-bottom: 12px;
}

.nil-tools-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #33bfad;
  text-transform: uppercase;
}

.nil-tools-header-tag::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: #33bfad;
}

.nil-tools-main-heading {
  color: #ffffff;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.nil-teal-accent {
  color: #33bfad;
}

.nil-tools-header-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5e0;
  margin: 0;
  max-width: 850px;
  font-weight: 400;
}

/* ==========================================================================
   2. Responsive Layout Feature Matrix Grid
   ========================================================================== */
.nil-tools-matrix-section {
  background-color: #2a2d30;
  padding: 0 20px 60px 20px;
  box-sizing: border-box;
}

.nil-matrix-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #3e4246;
}





/* Grid Item Layout Box */
.nil-matrix-item {
  box-sizing: border-box;
  padding: 40px 30px;
  border-bottom: 1px solid #3e4246;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}




/* Internal Matrix Content Styling */
.nil-matrix-icon {
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 20px;
}

.nil-matrix-title {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
  text-transform: uppercase;
}

.nil-matrix-desc {
  color: #a0aec0;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}

/* --- Core Section Config --- */
.nil-system-breakdown-section {
  background-color: #ffffff;
  padding: 80px 0px;
  color: #2a2d30;
  box-sizing: border-box;
}

/* --- Split Grid Layout Engine --- */
.nil-breakdown-split-layout {
  display: flex;;
  gap: 50px;
}



/* ==========================================================================
   Left Feature Breakdown Content Column
   ========================================================================== */
.nil-badge-wrapper {
  margin-bottom: 25px;
}

.nil-yellow-promo-badge {
  background-color: #ffb800;
  color: #2a2d30;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 6px 12px;
  text-transform: uppercase;
}

.nil-tag-block,
.nil-include-tag-block {
  margin-bottom: 12px;
}

.nil-panel-tag,
.nil-include-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #a0aec0;
  text-transform: uppercase;
}

.nil-panel-tag::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: #a0aec0;
}

.nil-panel-heading {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.2;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.nil-highlight-teal {
  color: #33bfad;
}

.nil-panel-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #718096;
  margin-bottom: 35px;
}

/* Detailed Vertical Check Row Styles */
.nil-breakdown-detailed-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.nil-detailed-item {
  position: relative;
  padding-left: 28px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4a5568;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #edf2f7;
}

.nil-detailed-item:last-child {
  border-bottom: none;
}

.nil-detailed-item strong {
  color: #2a2d30;
  font-weight: 700;
}

/* Custom Checkmark Vector Graphics via CSS Pseudo Elements */
.nil-detailed-item::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 20px;
  width: 5px;
  height: 9px;
  border: solid #33bfad;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ==========================================================================
   Right Checkout Card Invoice Elements
   ========================================================================== */
.nil-breakdown-pricing-panel {
  box-sizing: border-box;
  background-color: #ffffff;
  border: 1px solid #edf2f7;
  padding: 40px 30px;
  position: relative;
}

.nil-panel-top-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 4px;
  background-color: #33bfad;
}

/* Floating Corner Ribbon Accent Badge */
.nil-panel-badge-row {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  transform: translateY(-100%);
  text-align: right;
}

.nil-hardbound-tag {
  background-color: #ffb800;
  color: #2a2d30;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  display: inline-block;
  white-space: nowrap;
}

.nil-brand-subhead {
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #33bfad;
  margin-bottom: 6px;
}

.nil-product-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #2a2d30;
  margin: 0 0 4px 0;
  letter-spacing: -0.3px;
}

.nil-product-edition {
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #33bfad;
  margin-bottom: 30px;
}

/* Summary Invoice Checklists */
.nil-invoice-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nil-invoice-item {
  position: relative;
  padding-left: 24px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #4a5568;
}

.nil-invoice-item::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #33bfad;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Priceカウンター Layout Elements */
.nil-pricing-matrix {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}

.nil-main-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2a2d30;
  line-height: 1;
}

.nil-total-value {
  font-size: 0.75rem;
  font-weight: bold;
  color: #33bfad;
  letter-spacing: 0.5px;
}

.nil-shipping-terms {
  font-size: 0.7rem;
  color: #a0aec0;
  margin-top: 0;
  margin-bottom: 25px;
}

/* Action Controls Buttons */
.nil-btn-wrapper {
  margin-bottom: 20px;
}

.nil-checkout-btn {
  display: block;
  box-sizing: border-box;
  background-color: #33bfad;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  padding: 16px 20px;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.nil-checkout-btn:hover {
  background-color: #28a393;
}

.nil-guarantee-text {
  font-size: 0.68rem;
  line-height: 1.4;
  color: #a0aec0;
  margin: 0;
  text-align: center;
}

/* --- Core Structural Section Setup --- */
.nil-author-coach-section {
  background-color: #ffffff;
  padding: 80px 0px;
  color: #2a2d30;
  box-sizing: border-box;
}

/* --- Responsive 2-Column Split Grid --- */
.nil-author-grid {
  display: flex;
  gap: 50px;
}



/* ==========================================================================
   Left Side Photo & Metrics Bar Styles
   ========================================================================== */
.nil-author-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  background-color: #f7f9fa;
  overflow: hidden;
  display: flex;
}

.nil-author-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Attached Miniature Dashboard Row Grid */
.nil-author-mini-metrics {
  background-color: #2a2d30;
  display: flex;
  margin-top: 15px;
}

.nil-mini-metric-item {
  flex: 1;
  padding: 22px 10px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #3e4246;
}

.nil-mini-metric-item:last-child {
  border-right: none;
}

.nil-mini-val {
  color: #33bfad;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.nil-mini-lbl {
  color: #a0aec0;
  font-size: 0.58rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-transform: uppercase;
}

/* ==========================================================================
   Right Side Content Typography Styles
   ========================================================================== */
.nil-tag-block {
  margin-bottom: 15px;
}

.nil-author-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
  text-transform: uppercase;
}

.nil-author-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-author-heading {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.nil-highlight-teal {
  color: #33bfad;
}

/* Paragraph Text Blocks */
.nil-author-body-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.nil-author-para {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #718096;
  margin: 0;
}

/* Dark Bottom Identity Strip Bar */
.nil-author-footer-bar {
  display: inline-flex;
  background-color: #2a2d30;
  padding: 12px 24px;
  box-sizing: border-box;
}

.nil-footer-bar-text {
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 1px;
}

/* --- Core Section Structure Settings --- */
.nil-adult-qualification-section {
  background-color: #ffffff;
  padding: 80px 0px;
  color: #2a2d30;
  box-sizing: border-box;
}

/* --- Intro Text Structural Elements --- */
.nil-adult-top-block {
  max-width: 950px;
  margin: 0 auto 60px auto;
  text-align: left;
}

.nil-tag-block {
  margin-bottom: 15px;
}

/* --- Core Dark Container Setup Configuration --- */
.nil-paycheck-plan-section {
  background-color: #2a2d30;
  padding: 80px 0px;
  color: #ffffff;
  box-sizing: border-box;
}

.nil-paycheck-content-box {
  text-align: left;
}

/* --- Top Heading Layout Copy --- */
.nil-tag-block {
  margin-bottom: 15px;
}

.nil-paycheck-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
  text-transform: uppercase;
}

.nil-paycheck-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-paycheck-heading {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.nil-highlight-teal {
  color: #33bfad;
}

.nil-paycheck-intro-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.nil-paycheck-para {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #cbd5e0;
  margin: 0;
}

/* ==========================================================================
   Process Timeline Component Style Rules
   ========================================================================== */
.nil-paycheck-timeline {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.nil-timeline-caption {
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #a0aec0;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.nil-timeline-step-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #3e4246;
}

.nil-timeline-step-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Number Marker Badge Icons Frame */
.nil-step-number-box {
  width: 28px;
  height: 28px;
  background-color: rgba(51, 191, 173, 0.15);
  border: 1px solid #33bfad;
  color: #33bfad;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.nil-step-main-title {
  font-size: 0.88rem;
  font-weight: bold;
  letter-spacing: 0.8px;
  color: #ffffff;
  margin-top: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.nil-step-main-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #a0aec0;
  margin: 0;
}

/* ==========================================================================
   Bottom Left Side Accent Border Block Callouts
   ========================================================================== */
.nil-paycheck-guarantee-box {
  border-left: 2px solid #33bfad;
  padding: 5px 0 5px 25px;
}

.nil-guarantee-box-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #cbd5e0;
  font-style: italic;
  margin: 0;
}

/* ==========================================================================
   Mobile Adaptive Small Device Configurations Overrides
   ========================================================================== */



.nil-adult-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
  text-transform: uppercase;
}

.nil-adult-tag::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #33bfad;
}

.nil-adult-heading {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #2a2d30;
  margin-top: 0;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.nil-highlight-teal {
  color: #33bfad;
}

.nil-adult-intro {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #718096;
  margin: 0;
}

/* --- Responsive Layout Comparison Split Grid --- */
.nil-adult-qualify-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}



/* --- Column Header Trim Lines --- */
.nil-column-header-line {
  padding-bottom: 12px;
  border-bottom: 2px solid #33bfad;
  margin-bottom: 20px;
}

.nil-column-header-line.nil-gray-border {
  border-bottom-color: #e2e8f0;
}

.nil-column-heading-text {
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nil-teal-lbl {
  color: #33bfad;
}

.nil-gray-lbl {
  color: #cbd5e0;
}

/* --- Criteria Content List Arrays --- */
.nil-adult-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.nil-faded-list-text .nil-check-row-text {
  color: #a0aec0;
}

.nil-adult-check-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}

.nil-adult-check-row:last-child {
  border-bottom: none;
}

/* Visual List Accent Keys Layout symbols */
.nil-check-symbol {
  color: #33bfad;
  font-size: 0.95rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 3px;
  flex-shrink: 0;
}

.nil-cross-symbol {
  color: #cbd5e0;
  font-size: 0.85rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 4px;
  flex-shrink: 0;
}

.nil-check-row-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4a5568;
  margin: 0;
}



/* --- Core Dark Section Architecture Configuration --- */
.nil-final-summary-section {
  background-color: #2a2d30;
  padding: 80px 0px;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
}

/* ==========================================================================
   Top Headings Text Panel Block
   ========================================================================== */
.nil-summary-top-content {
  max-width: 850px;
  margin: 0 auto 50px auto;
}

.nil-tag-block {
  margin-bottom: 20px;
}

.nil-summary-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #33bfad;
  text-transform: uppercase;
}

.nil-summary-top-tag::before,
.nil-summary-top-tag::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #33bfad;
}

.nil-summary-main-heading {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nil-highlight-teal {
  color: #33bfad;
}

.nil-summary-main-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #cbd5e0;
  max-width: 720px;
  margin: 0 auto;
}

/* ==========================================================================
   Industries Grid Ribbon Layout Element
   ========================================================================== */
.nil-industries-ribbon-block {
  margin-bottom: 60px;
}

.nil-industries-title {
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #718096;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.nil-industries-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.nil-industry-badge {
  box-sizing: border-box;
  background-color: #34383c;
  border: 1px solid #3e4246;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 12px 24px;
  display: inline-block;
  min-width: 130px;
}

/* ==========================================================================
   Dashboard Metrics Columns Layout
   ========================================================================== */
.nil-summary-metrics-dashboard {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 60px auto;
  border-top: 1px solid #3e4246;
  padding-top: 40px;
}



.nil-summary-metric-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 240px;
  margin: 0 auto;
}



.nil-summary-metric-num {
  color: #33bfad;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}

.nil-summary-metric-lbl {
  color: #a0aec0;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
}

/* ==========================================================================
   Bottom Action Conversion Frame Elements
   ========================================================================== */
.nil-btn-action-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.nil-summary-solid-btn {
  display: inline-block;
  box-sizing: border-box;
  background-color: #33bfad;
  color: #2a2d30;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 16px 36px;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.nil-summary-solid-btn:hover {
  background-color: #2bcaba;
}

.nil-summary-fineprint-text {
  font-size: 0.7rem;
  color: #718096;
  margin: 0;
  font-style: italic;
}


/* Container styling */

  color: #2a2d30;
}

/* Base Table Styling */
.planner-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

/* Headers */
.planner-table thead th {
  background-color: #2a2d30;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 18px 15px;
  font-weight: 700;
  width: 25%;
}

.planner-table thead th.header-corner {
  background-color: #2a2d30;
}

/* Rows & Alternating Backgrounds */
.planner-table tbody tr {
  background-color: #ffffff;
}

.planner-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.planner-table td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #eaeaea;
  line-height: 1.5;
}

/* Feature Name Column */
.planner-table td.feature-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  color: #2a2d30;
  letter-spacing: 0.5px;
  width: 15%;
}

/* Lists (Good For Section) */
.checkmark-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checkmark-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #55585d;
}

.checkmark-list li:last-child {
  margin-bottom: 0;
}

/* Custom Checkmark Symbol */
.checkmark-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #33BFAD;
  font-weight: bold;
  font-size: 14px;
}

/* Badges */
.badge-outline {
  display: inline-block;
  border: 1px solid #33BFAD;
  color: #2a2d30;
  padding: 6px 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.badge-solid {
  display: inline-block;
  background-color: #33BFAD;
  color: #ffffff;
  padding: 6px 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

/* Price Stylings */
.price-text {
  font-size: 20px;
  font-weight: 700;
  color: #2a2d30;
}

/* CTA Buttons */
.btn-shop {
  display: block;
  text-align: center;
  background-color: #33BFAD;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 11px;
  padding: 12px 10px;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
}

.btn-shop:hover {
  background-color: #279688;
}


/* Responsive Layout for Mobile Devices (Max 768px) */
@media screen and (max-width: 768px) {
  
  /* Hide the native table header */
  .planner-table thead {
    display: none;
  }
  
  .planner-table, 
  .planner-table tbody, 
  .planner-table tr, 
  .planner-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Separate the table into distinct product blocks */
  .planner-table tbody tr {
    margin-bottom: 30px;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background-color: #ffffff !important;
  }

  /* Hide the label column rows that act as row breaks */
  .planner-table td.feature-title {
    display: none;
  }

  /* Format individual rows to mimic a standalone card view */
  .planner-table td {
    text-align: right;
    padding: 12px 15px;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
    padding-left: 45%;
  }

  /* Dynamically inject the product edition labels from custom HTML attributes */
  .planner-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    color: #2a2d30;
    text-align: left;
    width: 40%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Adjust alignment rules for specialized content blocks */
  .planner-table td.price-text {
    font-size: 18px;
  }

  .checkmark-list {
    text-align: left;
  }
  
  .row-good-for td {
    padding-left: 15px;
  }
  
  .row-good-for td::before {
    display: none;
  }

  /* Display layout optimization for buttons in mobile card views */
  .row-order td {
    padding-left: 15px;
  }
  
  .row-order td::before {
    display: none;
  }
  
  .btn-shop {
    width: 100%;
  }
}

/* ==========================================================================
   Financial Footwork - Credentials Section Styling
   ========================================================================== */

/* Main Section Wrapper */
.nil-proven-section {
  background-color: #2a2d30;
  color: #ffffff;
  padding: 60px 0px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Top Block: Headers & Subtext
   -------------------------------------------------------------------------- */



/* Green top label bar */
.nil-tag-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}



.nil-proven-tag {
  color: #33bfad;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

/* Main bold heading */
.nil-proven-heading {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0 0 20px 0;
	    color: #fff;
}

/* Paragraph subtext */
.nil-proven-subtext {
  color: #b3b3b3;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
	margin-bottom:40px;
}

/* --------------------------------------------------------------------------
   Dashboard & Stats Cards
   -------------------------------------------------------------------------- */

/* Outer grid dashboard */
.nil-proven-dashboard {
  background-color: #202224; /* Darker inner gray container background */
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-sizing: border-box;
}

/* Individual card cells */
.nil-stat-card {
  padding: 50px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Thin border separators between adjacent cards */
.nil-stat-card:not(:last-child) {
  border-right: 1px solid #383b3e;
}

/* Green Highlight Numbers */
.nil-stat-number {
  color: #33bfad;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Lower text labels inside cards */
.nil-stat-label {
  color: #b3b3b3;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.5px;
  margin: 0;
  max-width: 240px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */

/* Medium Devices (Tablets, less than 900px) */
@media (max-width: 900px) {
  .nil-proven-heading {
    font-size: 32px;
  }
  
  .nil-stat-card {
    padding: 40px 15px;
  }
  
  .nil-stat-number {
    font-size: 36px;
  }
}

/* Small Devices (Mobile Phones, less than 768px) */
@media (max-width: 768px) {
  .nil-proven-section {
    padding: 40px 15px;
  }

  .nil-proven-heading {
    font-size: 28px;
  }

  /* Stack layout vertically on small mobile viewports */
  .nil-proven-dashboard {
    grid-template-columns: 1fr;
  }

  /* Clear the right border and switch to horizontal line breaks */
  .nil-stat-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #383b3e;
  }
  
  .nil-stat-card {
    padding: 35px 20px;
  }
}
/* ==========================================================================
   Financial Footwork - Services Grid Section Styling
   ========================================================================== */

/* Main Section Wrapper */
.nil-services-grid-section {
  background-color: #f7f9fa; /* Very light gray page background behind the card */
  padding: 60px 0px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Top Block: Headers & Subtext
   -------------------------------------------------------------------------- */

.single-liner.liner-tagline {
  
margin-bottom:40px;
}

/* Light blue/green tag label text layout */
.single-liner.liner-tagline span {
  color: #33bfad;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  
  /* Inline-flex forces the line and text to sit horizontally side-by-side */
  display: inline-flex;
  align-items: center;
  gap: 8px;
}




/* Main bold section title */
.single-liner.liner-tagline h2 {
  color: #212529;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   White Layout Card & Three Column Grid
   -------------------------------------------------------------------------- */

/* Combined container card with subtle borders and shadows */
.nil-services-three-col {
  background-color: #ffffff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  text-align: left; /* Text aligns left inside the white card wrapper */
  overflow: hidden;
}

/* Individual Column Items */
.nil-service-column-item {
  padding: 55px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Vertical separator line between components */
.nil-service-column-item:not(:last-child) {
  border-right: 1px solid #eaeaea;
}

/* Pale teal tinted square housing icons */
.nil-service-icon-box {
  background-color: #ebfaf8;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

/* Ensure svgs inside the box stay crisp and centered */
.nil-service-icon-box svg {
  display: block;
}

/* Section block card headers */
.nil-service-column-title {
  color: #212529;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.3px;
  margin: 0 0 20px 0;
  min-height: 44px; /* Keeps text columns level if headers line-wrap */
}

/* Paragraph copy blocks */
.nil-service-column-desc {
  color: #6c757d;
  font-size: 14.5px;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Responsive Layout Adjustments
   -------------------------------------------------------------------------- */

/* Medium Screens (Tablets, less than 992px) */
@media (max-width: 992px) {
  .single-liner.liner-tagline h2 {
    font-size: 30px;
  }

  .nil-service-column-item {
    padding: 40px 25px;
  }

  .nil-service-column-title {
    font-size: 15px;
    min-height: auto;
  }
}

/* Small Screens (Mobile viewports, less than 768px) */
@media (max-width: 768px) {
  .nil-services-grid-section {
    padding: 40px 15px;
  }

  .single-liner.liner-tagline h2 {
    font-size: 26px;
  }

  /* Drop columns directly into vertical block stack */
  .nil-services-three-col {
    grid-template-columns: 1fr;
  }

  /* Reset vertical separators to standard bottom border separator lines */
  .nil-service-column-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }

  .nil-service-column-item {
    padding: 40px 30px;
  }
}

/* Desktop: 3 items in a row */
.nil-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tablet (iPad): 2 items in a row */
@media (max-width: 1024px) {
    .nil-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 item in a row */
@media (max-width: 768px) {
    .nil-cards-grid {
        grid-template-columns: 1fr;
    }
}

ul.greenish-dots {
    margin-top: 40px;
}
ul.greenish-dots li {
    margin-bottom: 10px;
}

ul.greenish-dots li {
    margin-bottom: 10px;
}
ul.greenish-dots li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 20px; /* Space for the custom dot */
    }
ul.greenish-dots li::before {
        content: "•";
        color: #2bbbb6; /* Match the greenish color from the image */
        font-weight: bold;
        font-size: 20px;
        position: absolute;
        left: 0;
        top: -4px; /* Adjust vertical alignment */
    }

section.collection-section {
    padding: 80px 0;
}
.nil-checkout-info-panel {
    width: 100%;
}
.page-id-21 section.problem-section.about-section.benifit-section.section-padding.business-case-section {
    padding-top: 80px !important;
	background: #fff;
}
.page-id-21 section.problem-section.about-section.benifit-section.section-padding.business-case-section .single-problem-box {
    align-items: flex-start;
}
/* .logo-marquee-area img {
    filter: brightness(0) saturate(100%);
} */





/* employee-financial-wellness */
.page-template-employee-financial-wellness .get-in-touch .problem-right img {
    max-width: 450px;
    margin: auto;
}
.page-template-employee-financial-wellness section.solution-section.program-type-section {
    background: #fff;
}
.page-template-employee-financial-wellness section.measurable-section.offer-section {
    background: #fff;
}
.page-template-employee-financial-wellness .track-record-section.result-section .single-train-box h5 {
    color: #2a2d30 !important;
}
.page-template-employee-financial-wellness .performance-content p {
    margin-top: 30px !important;
}
.page-template-financial-wellness-digital-hub-solution .measurable-section .problem-boxes .single-problem-box {
    width: calc(25% - 10px);
}
.page-template-financial-wellness-digital-hub-solution .enterprise-section.track-record-section .single-train-box h5 {
    font-size: 20px;
}
.page-template-financial-wellness-digital-hub-solution  section.expand-section.section-padding h2,
.page-template-financial-wellness-webinars  section.expand-section.section-padding h2,
.page-template-speaker-booking  section.expand-section.section-padding h2,
.page-template-pro-sports section.expand-section.section-padding h2,
.page-template-university-nil-programming section.expand-section.section-padding h2  {
    margin-bottom: 50px;
    text-align: center;
}

.page-template-financial-wellness-webinars .all-content-wrapper{
	align-items: center;
}
.page-template-financial-wellness-webinars .section-definition p{
	max-width: 800px;
    	margin-left: auto;
    margin-right: auto;
}



.page-template-speaker-booking .business-case-section .problem-flex {
    align-items: center;
}


.author-box-container {
    background-color: #f4f4f4;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.author-main-info {
    display: flex;
    gap: 20px;
    align-items: center;
}
.author-main-info img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}
p.author-box-title {
    margin: 0;
}
.author-main-info p {
    margin: 0;
}
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
}

.page-numbers {
    border: 1px solid #33bfad;
    padding: 10px 15px;
    background: #33bfad;
    color: #fff;
}

.page-numbers:hover {
    background: transparent;
    color: #2a2d30;
}
.page-id-21 section.testimonial-section.section-padding{
	background: #F5F6F7;
}
.page-id-21 section.our-clients-section.section-padding {
    background: #fff;
}
.page-id-21 .single-train-box.new-box {
    display: flex;
    flex-direction: column;
}
.page-id-21 .single-train-box.new-box p {
    flex-grow: 1;
}

.page-id-247 section.problem-section.about-section.benifit-section.section-padding.signature-section {
    background: #fff;
}

.page-id-247 section.problem-section.about-section.benifit-section.section-padding.signature-section .problem-flex {
    align-items: center;
}
.page-id-247 section.problem-section.about-section.benifit-section.section-padding.business-case-section {
    background: #fff;
}

.page-id-247 section.problem-section.about-section.benifit-section.section-padding.business-case-section .single-problem-box {
    align-items: flex-start;
}
.page-id-247 section.testimonial-section.section-padding {
    background: #F5F6F7;
}
.page-id-247 section.our-clients-section.section-padding {
    background: #fff;
}
.high-cost-section_content {
    text-align: center;
}
.page-template-university-nil-programming .high-cost-section iframe {
    height: 600px;
}
.page-template-university-nil-programming .high-cost-section_content h2 + p {
    max-width: 1000px;
    margin: auto;
}
.page-template-university-nil-programming .measurable-section .problem-boxes .single-problem-box {
    width: calc(25% - 9px);
}
.page-template-university-nil-programming section.problem-section.about-section.get-in-touch.foundation-section.section-padding.prepration-section {
    background: #fff;
}

.page-template-university-nil-programming section.problem-section.about-section.get-in-touch.foundation-section.section-padding.prepration-section img {
    max-width: 350px;
    margin: auto;
}
.page-template-university-nil-programming section.get-started-section.section-padding.high-cost-section.transition-section {
    text-align: center;
}
.page-template-university-nil-programming .section-definition {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.page-template-university-nil-programming .impact-title-flex {
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.page-template-university-nil-programming .impact-title-btn {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}
.page-id-257 .parent-info {
      text-align: center;
}
.page-id-257 .pillar-section .pillar-block h2{
    text-align: left;
}
.page-id-257 .single-industry h6 {
    margin-bottom: 0 !important;
}
.page-id-257 section.faq-section.section-padding {
    background: #f5f6f7;
}
.page-id-257 section.performance-info-section.section-padding.delivery-section.evaluation-section {
    text-align: center;
}
section.performance-info-section.section-padding.evaluation-section.ready-section {
    text-align: center;
}
.page-id-257 section.performance-info-section.section-padding.evaluation-section.ready-section  .hero-btn-flx {
    justify-content: center;
}
.page-id-257 .measureable-outcomes-section .problem-box-title-area {
    text-align: center;
    justify-content: center;
}
.page-id-257 .measureable-outcomes-section .problem-box-description-area {
    text-align: center;
}



.page-id-1286 .hero-section-four .hero-section-two-flex {
    align-items: center;
}
.page-id-1286 section.problem-section.about-section.get-in-touch.get-in-touch-2.section-padding.founder-ceo-section {
    background: #fff;
}
.page-id-1286 section.track-record-section.proven-impact-section.section-padding.serving-section.plan-section .section-definition {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-id-1286.page-template-about-us-new .our-clients-section.section-padding{
  margin-bottom: 0px;
}
.page-id-1286 section.problem-section.about-section.get-in-touch.get-in-touch-2.section-padding.founder-ceo-section.about-new-form-section {
    background: #fff;
}


.page-id-263 section.train-money-section.process-section.section-padding.book-strategy-section .performance-content p {
    margin-top: 20px !important;
}
.page-id-263 section.faq-section.section-padding {
    background: #f5f6f7;
}
.page-template-location-sub-page .measurable-section.workshop-section.section-padding .problem-boxes .single-problem-box {
    width: calc(25% - 9px);
    text-align: center;
    align-items: center;  
}


.page-id-1124 section.get-started-section.section-padding.high-cost-section {
    padding-top: 0px;
}
.page-id-1124 section.get-started-section.section-padding.high-cost-section iframe {
    min-height: 600px;
}
.page-id-1124 section.testimonial-section.section-padding {
    background: #f5f6f7;
}
.page-id-1124 section.problem-section.about-section.get-in-touch.cost-section.section-padding.mission-section.what-you-get-section {
    padding-top: 100px !important;
    background: #fff;
}
.page-id-231 .impact-title-flex .section-definition .single-liner.double-liner.liner-tagline{
  margin:0 auto 40px;
}
.page-id-231 section.train-money-section.process-section.section-padding {
    background: #fff;
}
.page-id-231 section.faq-section.section-padding {
    background: #f5f6f7;
}
.page-id-231 section.get-started-section.section-padding {
    background: #fff;
}
.page-id-233 .left-content-hero {
    max-width: 560px !important;
    margin: 0;
}


.page-id-233 .outcomes-section .container{
  border-top:0; 
}
.page-id-241 .delivery-formats-section .hero-content-2,
.page-id-245 .delivery-formats-section .hero-content-2 {
    background: #fff;
}

.page-id-25 section.problem-section.about-section.get-in-touch.foundation-section.section-padding.cf-section {
    background: #fff;
}
.page-id-25 section.faq-section.section-padding {
    background: #F5F6F7;
}
.page-id-261 .hero-section span {
    color: #fff;
}

.page-id-10 .hero-section::before,
.page-id-233 .hero-section::before{
  background: rgba(0, 0, 0, 0.4);
}
.page-id-233 .what-platform-section {
    background: #f5f6f7;
}
.page-id-233 .perks-section {
    background: #fff;
}
.page-id-233 .perks-section .hero-content-2 {
    display:none;
}
.page-id-233 .perks-section .hero-content{
    width:100%;
    text-align: center;
}
.page-id-233 .perks-section .location-hero-flex .hero-content a.green-btn {
    margin-left: auto;
    margin-right: auto;
}
.page-id-21 section.problem-section.about-section.benifit-section.section-padding.business-case-section .single-problem-box {
    width: calc(50% - 6px);
}

.page-id-21 section.problem-section.about-section.benifit-section.section-padding.business-case-section .problem-boxes {
    flex-direction: row;
    flex-wrap: wrap;
}
.page-id-245 .hero-section::before{
    background: rgba(0, 0, 0, 0.8);
}
.page-id-25 .expand-section.section-padding .problem-right {
    display: none;
}
.page-id-25 .expand-section.section-padding .problem-left {
    width: 100%;
    text-align: center;
}
.page-id-25 .expand-section.section-padding .problem-left p {
    margin: 0;
}
.page-id-25 .nil-solution-section{
    background: #f5f6f7;
}
.page-id-25 .nil-solution-section h2 {
    color: #000;
}
.center__btn a {
    margin: 50px auto 0;
}
.page-id-25 section.problem-section.about-section.get-in-touch.foundation-section.section-padding.prepration-section {
    display:none;
}
.page-id-25 section.get-started-section.section-padding.high-cost-section.in-person-section,
.page-id-25 section.get-started-section.section-padding.high-cost-section.transition-section {
    background: #fff;
}
.page-id-25 section.industry-section.section-padding.tools-section {
    background: #F5F6F7;
}
.page-id-29 .hero-section {
    height: 500px;
}
.page-id-29 .hero-section::before {
    background: rgba(0, 0, 0, 0.5);
}
.page-id-245 .definition__content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.page-id-245 .definition__content .section-definition {
    max-width: unset;
    width: calc(50% - 10px);
    margin: unset;
    text-align: left;
}
.page-id-245 .definition__content .location-hero-flex {
    width: calc(50% - 20px);
    flex-direction: column;
}
.page-id-245 .definition__content .section-definition .single-liner.double-liner.liner-tagline.auto-center {
    margin-left: 0;
}
.page-id-245 .definition__content .location-hero-flex .hero-content-2{
    width:100%
}











@media(max-width:1024px){
  .page-template-university-nil-programming .measurable-section .problem-boxes .single-problem-box {
      width: calc(50% - 9px);
  }
  .page-template-financial-wellness-digital-hub-solution .measurable-section .problem-boxes .single-problem-box {
      width: calc(50% - 10px);
  }
  .all-blogs-section .single-solution-box {
      width: 49%;
  }
}


@media(max-width:767px){
  .green-btn, .white-btn {
    font-size: 12px;
  }
  .single-liner.liner-tagline span {
      font-size: 8px;
  }
  .serving-section .single-liner.double-liner.liner-tagline {
      width: max-content !important;
  }
  .page-id-21 section.problem-section.about-section.benifit-section.section-padding.business-case-section .single-problem-box {
    width: 100%;
  }
  .page-id-245 .definition__content .section-definition,
  .page-id-245 .definition__content .location-hero-flex{
    width: 100%;
  }
}

/* phase 2 css  */

.sub-text-green span{
  color: #33bfad;
  display: block;
  margin: 20px 0;
  width:90%;
}

.home .about-section .single-problem-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
}

.home .about-section .single-problem-box .problem-box-title-area {
    width: 40px;
    height: 40px;
}

.home .about-section .single-problem-box .problem-box-description-area {
    flex-grow: unset;
    width: calc(100% - 40px);
}

.source-text span, .source-text p {
    text-align: center;
    margin: 20px auto;
    color: #5a6070;
    font-size: 14px;
    font-style: italic;
    display: block;
}

.new-card-grid .single-problem-box:last-child {
    width: 100% !important;
    margin-top:10px;
}

.new-card-grid .single-problem-box:nth-child(2) {
    background: #33bfad;
    transform: scale(1.1);
}

.new-card-grid .single-problem-box:nth-child(2) p, .new-card-grid .single-problem-box:nth-child(2) span, .new-card-grid .single-problem-box:nth-child(2) h5 {
    color:#fff;
}

.new-card-grid .single-problem-box:nth-child(2) .problem-box-title-area img {
    filter: brightness(0) saturate(100%) invert(92%) sepia(1%) saturate(2%) hue-rotate(7deg) brightness(109%) contrast(101%);
}

.new-card-grid .single-problem-box:nth-child(2)  a.green-btn {
    background: #2a2d30 !important;
}

.new-card-grid .single-problem-box {
    transform: scale(0.9);
}

@media screen and (max-width:991px){
    .new-card-grid .single-problem-box {
    transform: unset !important;
}
}


.real---cost--section-flex {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.real---cost--section-left {
    width: 50%;
}

.real---cost--section-right {
    width: 50%;
}

.real---cost--section-right p:not(:last-child) {
    margin-bottom:30px;
}

section.real---cost--section.section-padding {
    padding-bottom: 0 !important;
}

.videos-flex {
    justify-content: center;
}

.left-icon .single-problem-box {
    display: flex;
    flex-direction: row;
    gap: 18px;
}

.embed-video-cta iframe {
    width: 100%;
    height: 500px;
    max-width: 900px;
}

.embed-video-cta a {
    margin: 30px auto 0 auto;
}

@media screen and (max-width:767px){
    .real---cost--section-flex{
    flex-direction:column
}

.real---cost--section-left, .real---cost--section-right {
    width: 100%;
}
}


.google-reviews-parent {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top:80px;
}

.google-review-card {
  width: 32%;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #fff3cd;
  color: #856404;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}

.review-stars {
  color: #00b67a;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-title {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.review-meta {
  margin-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
}

.review-author {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}

.review-details {
  display: block;
  font-size: 12px;
  color: #777777;
  margin-top: 2px;
}

.verified-purchase {
  color: #c45500;
  font-weight: 600;
}

.review-body {
  font-size: 14px;
  line-height: 1.6;
  color: #444444;
  overflow-y: auto;
  max-height: 450px;
}

.review-body p {
  margin: 0 0 12px 0;
}

.review-body p:last-child {
  margin-bottom: 0;
}

/* Optional Responsive fallback for tablet/mobile */
@media (max-width: 991px) {
  .google-review-card {
    width: 48%;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .google-review-card {
    width: 100%;
  }
}


.hillary-speak-section {
    padding-top: 0 !important;
}

section.problem-section.about-section.benifit-section.section-padding.business-case-section.hillary-speak-section {
    padding-top: 0 !important;
}

.hillary-speak-section .problem-flex {
    align-items: flex-start !important;
}

.hillary-speak-section .problem-box-title-area h5 {
    font-size: 18px;
}

.extra-bot-des {
    text-align: center;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}


.business-case-section-2 .single-problem-box {
    width: 100% !important;
}

.business-case-section-2 .problem-flex {
    align-items: flex-start !important;
    gap: 40px !important;
}

.business-case-section-2 .single-problem-box h5{
    font-size: 18px;
}


.cta-section-final {
    background: rgb(42, 45, 48);
    color: #fff !important;
}

.cta-section-final h2, .cta-section-final p {
    color: #fff !important;
    text-align: center;
}

.cta-section-final p {
    margin: 30px 0;
}

.cta-section-final a {
    margin: 0 auto;
}


.speaker-kit-download-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #f8f9fa;
    box-sizing: border-box;
}

.speaker-kit-container {
    max-width: 900px;
    margin: 0 auto;
}

.speaker-kit-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.speaker-kit-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2A2D30;
    text-transform: uppercase;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
}

.speaker-kit-description {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    color: #4a5568;
    max-width: 750px;
    margin: 0 auto 28px auto;
}

.speaker-kit-action {
    display: flex;
    justify-content: center;
    align-items: center;
}

.speaker-kit-action .green-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

/* Responsive styles */
@media (max-width: 768px) {
    .speaker-kit-download-section {
        padding: 40px 15px;
    }
    
    .speaker-kit-card {
        padding: 25px 18px;
    }

    .speaker-kit-heading {
        font-size: 26px;
    }

    .speaker-kit-description {
        font-size: 15px;
    }
}



.our-programs-card .single-problem-box:nth-child(2) {
    background: #33bfad;
    transform: scale(1.1);
}

.our-programs-card .single-problem-box:nth-child(2) p, .our-programs-card .single-problem-box:nth-child(2) span, .our-programs-card .single-problem-box:nth-child(2) h5, .our-programs-card .single-problem-box:nth-child(2) ul li {
    color:#fff;
}

.our-programs-card .single-problem-box:nth-child(2) .problem-box-title-area img {
    filter: brightness(0) saturate(100%) invert(92%) sepia(1%) saturate(2%) hue-rotate(7deg) brightness(109%) contrast(101%);
}

.our-programs-card .single-problem-box:nth-child(2)  a.green-btn {
    background: #2a2d30 !important;
}

.our-programs-card .single-problem-box {
    transform: scale(0.9);
}

@media screen and (max-width:991px){
    .our-programs-card .single-problem-box {
    transform: unset !important;
}
}


#our-workshops .problem-box-title-area {
    align-items: flex-start;
    text-align: left;
}

.page-template-location-main-page .hero-section::before, .page-template-location-sub-page .hero-section::before{
    display:none;
}

s {
    text-decoration: unset !important;
}

.effective-section .single-solution-box {
    width: 49%;
}

.video-for-team-section .problem-flex {
    align-items: flex-start;
}

.video-for-team-section .single-problem-box {
    width: 48%;
}

.video-for-team-section .problem-boxes {
    flex-direction: row;
    flex-wrap: wrap;
}

section#package-section {
    display:block !important;
}

.video-process-section .single-train-box {
    width: 48%;
}

.video-process-section .green-btn{
    margin-top: 30px;
}

.choose-footwork {
    background: #fff !important;
}

.page-template-financial-wellness-webinars section.hero-section.hero-section-location .hero-content-2 {
    display: none;
}

.includes-section .hero-content p {
   color:#fff;
}


.athlete-edu-section {
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

/* Grey Overlay */
.athlete-edu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* Grey/Dark transparent overlay */
    z-index: 1;
}

.athlete-edu-section .container {
    position: relative;
    z-index: 2;
}

.athlete-edu-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.athlete-edu-section h2, .athlete-edu-section p {
    color: #fff;
}

.athlete-edu-section p {
    margin-top: 20px;
}

.league-section .train-boxes {
    justify-content: center;
}

.form-area-parent {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.form-area {
    width: 60%;
    padding-top: 0 !important;
}

.get--touch-area {
    width: 40%;
}

.get--touch-area p {
    font-size: 30px;
}

@media screen and (max-width:991px){
.form-area-parent {
    flex-direction: column;
}

.form-area, .get--touch-area {
    width: 100%;
    text-align: center;
}
}

@media screen and (max-width:767px){
    .get--touch-area p {
    font-size: 20px;
}
}

.booking-coach-section-2 iframe {
    width: 100%;
    height: 387px;
}


.how-we--work--section .section-definition {
    text-align: center;
    max-width: 940px;
    margin: 0 auto;
}

section.section-padding.how-we--work--section .single-liner.double-liner.liner-tagline {
    margin-left: auto;
    margin-right: auto;
}


/* new about section page */

/* Section Container & Background */
.speaking-formats-section {
  background-color: #f7f9fa;
}

/* Header Adjustments */
.speaking-formats-section .section-definition {
  text-align: center;
  margin-bottom: 40px;
}

/* Grid Layout */
.speaking-formats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0; /* Fallback gap vertically */
}

/* Individual Cards */
.speaking-card {
  position: relative;
  width: 23%;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.speaking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Mint Top Accent Bar */
.speaking-card .card-accent {
  height: 4px;
  background-color: #1bbca3; /* Mint color */
  width: 100%;
}

/* Card Body Content */
.speaking-card .card-content {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.speaking-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Anchor tag on title for SEO */
.speaking-card .card-title-link {
  color: #111827;
  text-decoration: none;
}

.speaking-card .card-title-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1; /* Makes entire card clickable */
}

.speaking-card p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* CTA Link Styling */
.speaking-card .card-cta {
  color: #1bbca3;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2; /* Ensures CTA layer is above card overlay */
}

.speaking-card .card-cta .arrow {
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.speaking-card:hover .card-cta .arrow {
  transform: translateX(4px);
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .speaking-card {
    width: 48%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .speaking-card {
    width: 100%;
    margin-bottom: 20px;
  }
}

.cert-logo-container {
    padding: 20px !important;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-left: auto;
    margin-right: auto;
}

.credential-cards-box {
    text-align: center;
}

.credential-cards-box > h3 {
    text-align: center;
    margin: 0 auto;
}

.credential-cards-box > span {
    color: grey;
    text-align: center;
    margin: 0 auto;
}

.press-podcast-section2 .single-solution-box {
    width: 48%;
}

@media screen and (max-width:767px){
    .press-podcast-section2 .single-solution-box {
    width: 100%;
}
}

.more-coverage-section .solution-boxes {
    justify-content: flex-start;
}

.more-coverage-section .single-solution-box {
    width: 22%;
}

.more-coverage-section .solution-content span {
    color: #2a2d30;
    display: block;
    margin-bottom: 20px;
}

.more-coverage-section .solution-content h5 {
    color: #3bbfad;
    font-size: 16px;
}

@media screen and (max-width:991px){
    .more-coverage-section .single-solution-box {
    width: 31%;
}

}


@media screen and (max-width:767px){
    .more-coverage-section .single-solution-box {
    width: 100%;
}

}

/* Media Resources Section */
.media-resources-section {
    background-color: #f9fbfb;
}

/* Section Title */
.media-resources-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

/* Grid Layout (3 Columns Desktop) */
.media-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Individual Cards */
.media-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 32px 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2a2d30;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f4f4;
}

/* Column 1: About Text */
.about-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

/* Column 2: Downloads List */
.download-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.download-list li {
    margin-bottom: 16px;
}

.download-list li:last-child {
    margin-bottom: 0;
}

.download-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 12px 14px;
    background-color: #f8fafb;
    border: 1px solid #e2e8e8;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.download-link .link-text {
    font-size: 0.92rem;
    font-weight: 600;
    color: #2a2d30;
    flex-grow: 1;
}

.download-link .file-type {
    font-size: 0.8rem;
    color: #888888;
    margin-right: 8px;
}

.download-link .arrow-icon {
    font-size: 1.1rem;
    color: #3bbfad;
    transition: transform 0.25s ease;
}

.download-link:hover {
    background-color: #ffffff;
    border-color: #3bbfad;
    box-shadow: 0 4px 10px rgba(59, 191, 173, 0.15);
    transform: translateY(-2px);
}

.download-link:hover .link-text {
    color: #3bbfad;
}

.download-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* Column 3: Story Angles List */
.story-angles-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.story-angles-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555555;
}

.story-angles-list li:last-child {
    margin-bottom: 0;
}

.story-angles-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3bbfad;
    font-size: 1.2rem;
    line-height: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .media-resources-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.power-form-section {
    background: #F5F6F7;
}

.power-form-section .get--touch-area p {
    font-size: 18px;
}

.power-form-section .get--touch-area h2 {
    margin-bottom: 30px;
}

.nil-solution-section2 .center__btn p {
    text-align: center;
}

.nil-solution-section2 .center__btn p > a {
    margin: unset !important;
}

.nil-solution-section2 .center__btn {
    margin-top: 80px;
}

.nil-solution-section2 .single-problem-box {
    width: 32% !important;
}

.nil-solution-section2 .problem-box-title-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.nil-solution-section2 .single-problem-box:nth-child(2) {
    background: #33bfad;
    transform: scale(1.1);
}

.nil-solution-section2 .single-problem-box:nth-child(2) p, .nil-solution-section2 .single-problem-box:nth-child(2) span, .nil-solution-section2 .single-problem-box:nth-child(2) h5, .nil-solution-section2 .single-problem-box:nth-child(2) ul li {
    color:#fff;
}

.nil-solution-section2 .single-problem-box:nth-child(2) .problem-box-title-area img {
    filter: brightness(0) saturate(100%) invert(92%) sepia(1%) saturate(2%) hue-rotate(7deg) brightness(109%) contrast(101%);
}

.nil-solution-section2 .single-problem-box:nth-child(2)  a.green-btn {
    background: #2a2d30 !important;
}

.nil-solution-section2 .single-problem-box {
    transform: scale(0.9);
}

@media screen and (max-width:991px){
    .nil-solution-section2 .single-problem-box {
    transform: unset !important;
}
}

.flex-area-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
}

.flex-area-content .high-cost-section_content {
    text-align: left;
    width: 60%;
}

.flex-area-content .high-cost-section_content-right {
    width: 40%;
}

.flex-area-content a.green-btn {
    margin: unset;
}

.flex-area-content .single-liner.double-liner.liner-tagline.auto-center {
    margin-left: unset;
}

@media screen and (max-width:991px){
    .flex-area-content{
        flex-direction:column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .flex-area-content .high-cost-section_content-right, .flex-area-content .high-cost-section_content{
         width: 100%;
    }
}

/* Container Wrapper */
.image-overlay-wrapper {
    position: relative;
    display: inline-block; /* or block depending on your layout */
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px; /* Optional: adjust or remove to match your design */
}

/* Force image to fill container */
.image-overlay-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay Effect */
.image-overlay-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Black overlay with 40% opacity */
    pointer-events: none; /* Allows clicks to pass through if needed */
}


.in-person-section .problem-boxes {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 48px;
}

.in-person-section .single-problem-box {
    width: 48%;
}

@media screen and (max-width:767px){
  .in-person-section .single-problem-box {
    width: 100%;
}

}

.center__btn {
    text-align: center;
}

.center__btn p {
    margin-bottom: 20px;
}

section.get-started-section.section-padding.high-cost-section.transition-section.in-person-section.transition-section2, .nil-resources-section {
    background-color: #f9fbfb;
}


/* Card Container Adjustments */
.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Make entire card clickable via stretched overlay link */
.card-cover-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* Image Container & Styling */
.article-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.article-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Card Body Content */
.article-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}

.article-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}

.article-description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Article Link Style */
.article-link-wrapper {
  margin-top: auto;
}

.read-article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.mint-arrow {
  width: 14px;
  height: auto;
  transition: transform 0.2s ease;
}

/* Hover Effects */
.article-card:hover {
  transform: translateY(-4px);
}

.article-card:hover .article-featured-image {
  transform: scale(1.03);
}

.article-card:hover .mint-arrow {
  transform: translateX(4px);
}

.problem-boxes.nil-article-boxes {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 48px;
}

article.single-problem-box.article-card {
    width: 49%;
}

@media screen and (max-width:767px){
  article.single-problem-box.article-card {
    width:100%;
}
}

.page-id-21 .buttons-area {
    display: flex !important;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

@media screen and (max-width:767px){
    .page-id-21 .buttons-area a.green-btn {
    width: 100%;
}

.page-id-21 .buttons-area {
    gap: 20px;
}
}


section.track-record-section.section-padding.result-section.started-webinar-section.started-webinar-section2 {
    display: block;
    background-color: #f9fbfb;
    text-align: center;
}

section.track-record-section.section-padding.result-section.started-webinar-section.started-webinar-section2 .single-liner.double-liner.liner-tagline {
    margin-left: auto;
    margin-right: auto;
}

section.track-record-section.section-padding.result-section.started-webinar-section.started-webinar-section2 .single-train-box h5 {
    color: #2a2d30 !important;
}

.page-id-245 .definition__content .location-hero-flex .hero-content-2 {
    background: unset;
    padding: unset;
}

.page-id-245 .definition__content .location-hero-flex .hero-content-2 ul {
    flex-wrap: wrap;
    flex-direction: row;
}

.page-id-245 .definition__content .location-hero-flex .hero-content-2 li {
    width: 48%;
    background: #fff;
    padding: 30px;
}

.page-id-245 .definition__content .location-hero-flex .hero-content-2 li::before {
    display: none;
}

.page-id-245 .definition__content .location-hero-flex {
    margin-top: unset;
}

.page-id-23 .problem-right {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.page-id-23 .problem-right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.page-id-23 .problem-right img {
  position: relative;
  z-index: 0;
  display: block;
  max-width: 100%;
  height: auto;
}

/* Base Section Styling */
.ready-to-standout {
  background-color: #f8fafc;
}

/* Two-column layout grid */
.ready-to-standout__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* Content Styling */
.ready-to-standout__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Form Container Card */
.ready-to-standout__form-wrapper {
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.ready-to-standout__form-wrapper iframe {
  border-radius: 12px;
}

/* Desktop Responsive Layout */
@media (min-width: 992px) {
  .ready-to-standout__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .ready-to-standout__title {
    font-size: 2.75rem;
  }
}

@media screen and (max-width:991px) {
  .effective-section .single-solution-box {
    width: 48%;
}
}

@media screen and (max-width:767px) {
.effective-section .single-solution-box {
    width: 100%;
}

.video-for-team-section .single-problem-box {
    width: 100%;
}

.video-process-section .single-train-box {
    width: 100%;
}
}


/* Section Base Styling */
.intro-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Flex Container Layout */
.intro-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0; /* Spacing handled via percentages */
}

/* Left Content Column */
.intro-content {
  width: 52%;
}

/* Right Media Column */
.intro-media {
  width: 44%;
}

/* Typography & Spacing */
.intro-content h2 {
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.intro-content p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 16px;
}

.intro-cta {
  margin-top: 28px;
}

/* Responsive 16:9 Video Wrapper */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.08), 
              0 10px 15px -5px rgba(0, 0, 0, 0.04);
  background-color: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive Breakpoint for Mobile & Tablets */
@media (max-width: 991px) {
  .intro-content,
  .intro-media {
    width: 100%;
  }

  .intro-media {
    margin-top: 40px;
  }
}


.campaign-section .single-problem-box {
    width: 32% !important;
}

.new-card-grid .single-problem-box:nth-child(2) li {
    color: #fff !important;
}

.new-card-grid .single-problem-box:nth-child(2) li:before {
    filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(293%) hue-rotate(24deg) brightness(119%) contrast(100%);
}



/* Section Base Layout */
.calendar-campaigns-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.calendar-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px auto;
}

.calendar-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.25;
}

.calendar-intro {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
}

/* Flex Container Layout without flex-grow or flex-shrink */
.calendar-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: 0 -12px 40px -12px;
}

/* Pill-Shaped Theme Chips (Mint Outline Style) */
.theme-chip {
  width: 30%; /* 3-col dynamic desktop layout */
  margin: 12px;
  border: 2px solid #3BBFAD;
  border-radius: 50px; /* Pill shape */
  padding: 20px 24px;
  background-color: #ffffff;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.theme-chip:hover {
  background-color: rgba(59, 191, 173, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 191, 173, 0.12);
}

.chip-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.chip-date {
  display: block;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.4;
}

/* Footer & Closing Line */
.calendar-footer {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.calendar-closing {
  font-size: 1.05rem;
  font-weight: 500;
  color: #334155;
  line-height: 1.6;
  font-style: italic;
}

/* Responsive Tablet & Mobile Adjustments */
@media (max-width: 991px) {
  .theme-chip {
    width: 45%; /* 2-col on tablets */
  }
}

@media (max-width: 640px) {
  .theme-chip {
    width: 100%; /* Stacks 100% full width on mobile */
    border-radius: 28px; /* Slightly tighter pill radius for mobile screens */
    margin: 8px 0;
  }

  .calendar-chips-wrapper {
    margin: 0 0 32px 0;
  }
  
  .calendar-header h2 {
    font-size: 1.75rem;
  }
}


/* Section Base */
.why-campaigns-section {
  padding: 80px 0;
  background-color: #f5f6f7;
}

.why-campaigns-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-campaigns-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
}

/* Flex Container Layout (without flex-grow / flex-shrink) */
.why-campaigns-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 48px;
}

/* 2x2 Layout: Cards set to 48% width */
.why-campaign-card {
  width: 48%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  background-color: #f8fafc;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-campaign-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

/* Checkmark Icon Styling */
.why-campaign-card .icon-wrapper {
  width: 32px;
  margin-right: 16px;
  margin-top: 2px;
}

.why-campaign-card .icon-wrapper svg {
  display: block;
  width: 32px;
  height: 32px;
}

/* Card Content Area */
.why-campaign-card .card-content {
  width: 90%;
}

.why-campaign-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.why-campaign-card .card-wysiwyg p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 12px 0;
}

.why-campaign-card .card-wysiwyg p:last-child {
  margin-bottom: 0;
}

/* CTA Wrapper */
.why-campaigns-cta {
  text-align: center;
  margin-top: 16px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .why-campaign-card {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .why-campaigns-header h2 {
    font-size: 1.75rem;
  }
  
  .why-campaign-card {
    padding: 20px 16px;
  }
}

.why-campaigns-cta a {
    margin: 0 auto;
}




/* Section Outer Base */
.how-it-works-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 40px;
}

.how-it-works-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
}

/* Timeline Image Graphic */
.timeline-graphic-wrapper {
  text-align: center;
  margin-bottom: 48px;
  width: 100%;
}

.timeline-graphic-wrapper img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* 2x2 Grid Layout using Percentage Widths (No flex grow/shrink) */
.steps-grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step-card-item {
  width: 48%; /* 2 cards per row on desktop */
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  box-sizing: border-box;
}

.step-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  width: 6%;
  margin-right: 12px;
  line-height: 1;
  padding-top: 2px;
}

.step-card-content {
  width: 90%;
}

.step-card-content h3 {
  display: inline;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.5;
}

.step-wysiwyg {
  display: inline;
}

.step-wysiwyg p {
  display: inline;
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* CTA Wrapper */
.how-it-works-cta {
  text-align: center;
  margin-top: 16px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .how-it-works-card-bg {
    padding: 30px 20px;
  }

  .step-card-item {
    width: 100%; /* Stacks to 1 column on mobile/tablet */
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) {
  .how-it-works-header h2 {
    font-size: 1.75rem;
  }

  .step-num {
    width: 10%;
  }

  .step-card-content {
    width: 86%;
  }
}

.how-it-works-cta a {
    margin: 0 auto;
}



/* Section Outer Base (Slate/Off-Greyish Tint Background) */
.after-week12-section {
  padding: 80px 0;
  background-color: #eef2f6; /* Modern cool greyish/slate tint distinct from plain grey/white */
}

.after-week12-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Header & Typography */
.after-week12-header {
  margin-bottom: 24px;
}

.after-week12-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
}

/* WYSIWYG Content Area */
.after-week12-body {
  margin-bottom: 40px;
}

.after-week12-body p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 16px 0;
}

.after-week12-body p:last-child {
  margin-bottom: 0;
}

/* Section Image Wrapper */
.after-week12-media {
  margin: 0 auto 40px auto;
  width: 100%;
}

.after-week12-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

/* CTA Wrapper */
.after-week12-cta {
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .after-week12-section {
    padding: 60px 0;
  }

  .after-week12-header h2 {
    font-size: 1.75rem;
  }

  .after-week12-body p {
    font-size: 1rem;
  }
}




/* Section Base Layout */
.closing-form-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.closing-section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 56px auto;
}

.closing-section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
}

/* Flex Container Layout (Percentage widths without flex grow/shrink) */
.closing-section-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/* Left Column Styling */
.closing-left-col {
  width: 52%;
}

.closing-wysiwyg p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 20px;
}

.closing-wysiwyg p:last-child {
  margin-bottom: 0;
}

/* Right Column & Form Container Styling */
.closing-right-col {
  width: 44%;
}

.form-card-container {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

.form-card-container h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

/* Form Embed Container */
.form-embed-wrapper iframe {
  width: 100%;
  border: none;
  display: block;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .closing-left-col,
  .closing-right-col {
    width: 100%;
  }

  .closing-right-col {
    margin-top: 40px;
  }
}

@media (max-width: 640px) {
  .closing-section-header h2 {
    font-size: 1.75rem;
  }

  .form-card-container {
    padding: 24px 20px;
  }
}


/* Unique Section Base Styles */
.fw-stress-section {
  padding: 80px 0;
  background-color: #f5f6f7;
}

/* Centered Single Column Layout */
.fw-stress-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow Spacing */
.fw-stress-wrapper .liner-tagline {
  margin-bottom: 20px;
}

/* Headline Styling */
.fw-stress-wrapper h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 24px;
}

/* WYSIWYG Content Paragraphs & Citation Styling */
.fw-stress-body-editor p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 20px;
  text-align: center;
}

.fw-stress-body-editor .problem-source,
.fw-stress-body-editor small,
.fw-stress-body-editor em {
  display: block;
  font-size: 0.88rem;
  color: #64748b;
  margin-top: -8px;
  margin-bottom: 24px;
}

/* 16:9 Responsive Video Frame */
.fw-stress-video-block {
  margin-top: 40px;
}

.fw-stress-iframe-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background-color: #000000;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.fw-stress-iframe-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video Caption — Exact 10px Gap Rule */
.fw-stress-video-subtext {
  font-size: 0.9rem;
  color: #64748b;
  font-style: italic;
  margin-top: 10px !important; /* Fixed 10px spacing rule */
  margin-bottom: 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .fw-stress-section {
    padding: 60px 0;
  }

  .fw-stress-wrapper h2 {
    font-size: 1.75rem;
  }

  .fw-stress-body-editor p {
    font-size: 1rem;
  }
}

.fw-stress-section .single-liner.double-liner.liner-tagline {
    margin-left: auto;
    margin-right: auto;
}






/* Section Outer Layout (White Background) */
.fw-fail-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Header Styling */
.fw-fail-header {
  max-width: 900px;
  margin: 0 0 40px 0;
}

.fw-fail-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
}

/* Two-Column Flex Layout */
.fw-fail-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/* Left Column Styling */
.fw-fail-text-col {
  width: 52%;
}

.fw-fail-editor p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 20px;
}

.fw-fail-editor p:last-child {
  margin-bottom: 0;
}

/* Right Column Styling */
.fw-fail-media-col {
  width: 44%;
}

.fw-fail-media-box {
  width: 100%;
}

/* 16:9 Aspect Ratio Responsive Iframe Holder */
.fw-fail-iframe-holder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background-color: #000000;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.fw-fail-iframe-holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Caption - Exact 10px Gap Rule */
.fw-fail-caption {
  font-size: 0.9rem;
  color: #64748b;
  font-style: italic;
  margin-top: 10px !important; /* Fixed 10px spacing rule */
  margin-bottom: 0;
  text-align: left;
}

/* Mobile Responsive Stacking */
@media (max-width: 991px) {
  .fw-fail-text-col,
  .fw-fail-media-col {
    width: 100%;
  }

  .fw-fail-media-col {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .fw-fail-section {
    padding: 60px 0;
  }

  .fw-fail-header h2 {
    font-size: 1.75rem;
  }

  .fw-fail-editor p {
    font-size: 1rem;
  }
}



/* Section Outer Layout (Required #f5f6f7 Background) */
.fw-shift-section {
  padding: 80px 0;
  background-color: #f5f6f7;
}

/* 55/45 Flexbox Grid Layout */
.fw-shift-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* Left Column Styling (55%) */
.fw-shift-text-col {
  width: 55%;
  padding-right: 24px;
  box-sizing: border-box;
}

.fw-shift-header {
  margin-bottom: 24px;
}

.fw-shift-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
}

.fw-shift-editor p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 20px;
}

.fw-shift-editor p:last-child {
  margin-bottom: 0;
}

/* Right Column Styling (45%) */
.fw-shift-media-col {
  width: 45%;
  box-sizing: border-box;
}

.fw-shift-image-wrapper {
  width: 100%;
}

.fw-shift-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

/* Responsive Stacking for Mobile & Tablet */
@media (max-width: 991px) {
  .fw-shift-text-col,
  .fw-shift-media-col {
    width: 100%;
    padding-right: 0;
  }

  .fw-shift-media-col {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .fw-shift-section {
    padding: 60px 0;
  }

  .fw-shift-header h2 {
    font-size: 1.75rem;
  }

  .fw-shift-editor p {
    font-size: 1rem;
  }
}




/* Outer Section Base (White Background) */
.fw-framework-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Header & Intro Formatting */
.fw-framework-header {
  max-width: 820px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.fw-framework-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 16px;
}

.fw-framework-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* Model Graphic Container */
.fw-framework-graphic-wrapper {
  max-width: 950px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.fw-framework-graphic-wrapper img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Three Pillar Cards Layout */
.fw-framework-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.fw-framework-card {
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fw-framework-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.fw-framework-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.fw-framework-card p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* Bottom Outro Paragraph */
.fw-framework-outro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.fw-framework-outro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .fw-framework-cards-grid {
    flex-direction: column;
  }

  .fw-framework-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .fw-framework-section {
    padding: 60px 0;
  }

  .fw-framework-header h2 {
    font-size: 1.75rem;
  }
}





/* Section Container with Light Gray Background */
.fw-topics-section {
  width: 100%;
  clear: both;
  padding: 80px 0;
  background-color: #f8fafc; /* Standard light gray section background */
  box-sizing: border-box;
}

.fw-topics-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Header & Intro Formatting */
.fw-topics-header {
  max-width: 820px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.fw-topics-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 16px;
}

.fw-topics-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* 2x3 Topics Grid */
.fw-topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

/* 2 Columns: Each card takes ~50% width minus gap */
.fw-topic-card {
  flex: 0 0 calc(50% - 12px);
  max-width: calc(50% - 12px);
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fw-topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

/* Icon Left Layout */
.fw-topic-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.fw-topic-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fw-topic-icon-wrap img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.fw-topic-icon-wrap svg {
  width: 24px;
  height: 24px;
}

/* Card Content Styling */
.fw-topic-content {
  flex: 1;
}

.fw-topic-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.fw-topic-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* Closing Outro Paragraph */
.fw-topics-outro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.fw-topics-outro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  font-weight: 500;
  margin: 0;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 850px) {
  .fw-topic-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .fw-topics-section {
    padding: 60px 0;
  }

  .fw-topics-header h2 {
    font-size: 1.75rem;
  }

  .fw-topic-card-inner {
    gap: 16px;
  }
}


/* Section Outer Container (White Background) */
.fw-types-section {
  width: 100%;
  clear: both;
  padding: 80px 0;
  background-color: #ffffff;
  box-sizing: border-box;
}

.fw-types-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Header & Intro Copy */
.fw-types-header {
  max-width: 820px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.fw-types-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 16px;
}

.fw-types-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* Comparison Table Layout (Desktop) */
.fw-types-table-wrapper {
  width: 100%;
  margin-bottom: 48px;
  overflow-x: auto;
}

.fw-types-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
}

/* Mint Header Styling */
.fw-types-table thead tr {
  background-color: #e6f9f3; /* Light Mint Green Header Background */
}

.fw-types-table th {
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d5c46; /* Deep Mint/Teal text for contrast */
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: left;
  border-bottom: 2px solid #bdf2e1;
}

.fw-types-table td {
  padding: 20px 24px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
}

.fw-types-table tbody tr:last-child td {
  border-bottom: none;
}

.fw-types-table tbody tr:hover {
  background-color: #fafafa;
}

/* Column Width Ratios */
.fw-col-format {
  width: 20%;
  color: #0f172a !important;
}

.fw-col-format strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.fw-col-best {
  width: 40%;
}

.fw-col-limit {
  width: 40%;
}

/* Outro Copy */
.fw-types-outro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.fw-types-outro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  font-weight: 500;
  margin: 0;
}

/* ==========================================================================
   Mobile Responsive Transformation (Table -> Mini Cards)
   ========================================================================== */
@media (max-width: 768px) {
  .fw-types-section {
    padding: 60px 0;
  }

  .fw-types-header h2 {
    font-size: 1.75rem;
  }

  /* Force Table to Behaviors as Stacked Divs */
  .fw-types-table, 
  .fw-types-table thead, 
  .fw-types-table tbody, 
  .fw-types-table th, 
  .fw-types-table td, 
  .fw-types-table tr {
    display: block;
  }

  /* Hide Header Row on Mobile */
  .fw-types-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .fw-types-table {
    border: none;
    background: transparent;
  }

  /* Mini Card Styling */
  .fw-types-table tbody tr {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  }

  .fw-types-table td {
    width: 100% !important;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #f1f5f9;
  }

  .fw-types-table td:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Format Card Header */
  .fw-types-table td.fw-col-format {
    padding-top: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e6f9f3;
  }

  .fw-types-table td.fw-col-format strong {
    font-size: 1.2rem;
    color: #0f172a;
    display: block;
  }

  /* Dynamic Data Labels for Best For & The Limit */
  .fw-types-table td[data-label]:not(.fw-col-format)::before {
    content: attr(data-label);
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0d5c46;
    margin-bottom: 4px;
  }
}


/* Section Outer Container (Light Gray Background) */
.fw-implementation-section {
  width: 100%;
  clear: both;
  padding: 80px 0;
  background-color: #f8fafc; /* Standard light gray section background */
  box-sizing: border-box;
}

.fw-implementation-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Header & Intro Copy */
.fw-implementation-header {
  max-width: 820px;
  margin: 0 auto 36px auto;
  text-align: center;
}

.fw-implementation-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 16px;
}

.fw-implementation-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* Linked List Container */
.fw-implementation-links-wrapper {
  max-width: 860px;
  margin: 0 auto 48px auto;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 36px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}

.fw-implementation-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fw-implementation-links-list li {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  padding-left: 28px;
}

.fw-implementation-links-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fw-implementation-links-list li:first-child {
  padding-top: 0;
}

/* Custom Bullet Indicator */
.fw-implementation-links-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00d084; /* Mint Accent */
}

.fw-implementation-links-list li:first-child::before {
  top: 9px;
}

.fw-impl-link-anchor {
  font-weight: 700;
  color: #0f172a;
  text-decoration: underline;
  text-decoration-color: #00d084;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.fw-impl-link-anchor:hover {
  color: #00d084;
}

.fw-impl-link-desc {
  color: #475569;
}

/* Video Block Styling */
.fw-implementation-video-block {
  max-width: 860px;
  margin: 0 auto 48px auto;
}

.fw-implementation-iframe-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background-color: #000000;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.fw-implementation-iframe-box iframe,
.fw-implementation-iframe-box object,
.fw-implementation-iframe-box embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.fw-implementation-video-subtext {
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Outro Paragraph Formatting */
.fw-implementation-outro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.fw-implementation-outro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 16px;
}

.fw-implementation-outro p:last-child {
  margin-bottom: 0;
}

.fw-implementation-outro a {
  font-weight: 700;
  color: #0f172a;
  text-decoration: underline;
  text-decoration-color: #00d084;
  text-underline-offset: 3px;
}

.fw-implementation-outro a:hover {
  color: #00d084;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .fw-implementation-section {
    padding: 60px 0;
  }

  .fw-implementation-header h2 {
    font-size: 1.75rem;
  }

  .fw-implementation-links-wrapper {
    padding: 24px 20px;
  }

  .fw-implementation-links-list li {
    font-size: 0.98rem;
  }
}


/* Section Outer Container (White Background) */
.fw-roadmap-section {
  width: 100%;
  clear: both;
  padding: 80px 0;
  background-color: #ffffff;
  box-sizing: border-box;
}

.fw-roadmap-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Header & Intro Formatting */
.fw-roadmap-header {
  max-width: 820px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.fw-roadmap-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 16px;
}

.fw-roadmap-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* 1-2-3 Process Timeline Grid (3 Columns) */
.fw-roadmap-timeline-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 50px;
  position: relative;
}

.fw-roadmap-step-card {
  flex: 1 1 calc(33.333% - 16px);
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 28px;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fw-roadmap-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

/* Step Header Layout */
.fw-roadmap-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.fw-roadmap-step-num {
  font-size: 2rem;
  font-weight: 800;
  color: #cbd5e1;
  line-height: 1;
}

/* Mint Month Label Badge */
.fw-roadmap-badge {
  display: inline-block;
  background-color: #e6f9f3;
  color: #0d5c46;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid #bdf2e1;
}

/* Card Step Title & Body Copy */
.fw-roadmap-step-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.fw-roadmap-step-body p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* Roadmap Footer (Outro & Button) */
.fw-roadmap-footer {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.fw-roadmap-outro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 28px;
}

.fw-roadmap-cta {
  display: inline-block;
}


/* Mobile & Tablet Responsiveness */
@media (max-width: 991px) {
  .fw-roadmap-timeline-grid {
    flex-direction: column;
  }

  .fw-roadmap-step-card {
    width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .fw-roadmap-section {
    padding: 60px 0;
  }

  .fw-roadmap-header h2 {
    font-size: 1.75rem;
  }
}



/* Section Outer Container (Light Gray Background) */
.fw-outcomes-section {
  width: 100%;
  clear: both;
  padding: 80px 0;
  background-color: #f8fafc;
  box-sizing: border-box;
}

.fw-outcomes-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Header */
.fw-outcomes-header {
  max-width: 820px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.fw-outcomes-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
}

/* Stat Tiles Grid Layout (2 Equal Columns) */
.fw-outcomes-tiles-wrapper {
  max-width: 960px;
  margin: 0 auto 48px auto;
}

.fw-outcomes-tiles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.fw-outcomes-tile {
  flex: 1 1 calc(50% - 12px);
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fw-outcomes-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

/* Stat Number & Label Typography */
.fw-outcomes-number {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.fw-outcomes-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0d5c46; /* Mint/Teal contrast tone */
  line-height: 1.4;
  max-width: 320px;
}

/* Context Line Styling Under Tiles */
.fw-outcomes-context {
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
  text-align: center;
  margin-top: 18px;
  margin-bottom: 0;
  font-style: italic;
}

/* Narrative Copy Layout */
.fw-outcomes-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.fw-outcomes-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 16px;
}

.fw-outcomes-copy p:last-child {
  margin-bottom: 0;
}

/* CTA Wrapper Alignment */
.fw-outcomes-cta {
  text-align: center;
  margin-top: 36px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .fw-outcomes-section {
    padding: 60px 0;
  }

  .fw-outcomes-header h2 {
    font-size: 1.75rem;
  }

  .fw-outcomes-tiles-grid {
    flex-direction: column;
  }

  .fw-outcomes-tile {
    width: 100%;
    flex: 1 1 100%;
    padding: 32px 20px;
  }

  .fw-outcomes-number {
    font-size: 2.25rem;
  }

  .fw-outcomes-label {
    font-size: 1rem;
  }
}


/* Section Outer Container (White Background) */
.fw-checklist-section {
  width: 100%;
  clear: both;
  padding: 80px 0;
  background-color: #ffffff;
  box-sizing: border-box;
}

.fw-checklist-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Header & Intro Copy */
.fw-checklist-header {
  max-width: 820px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.fw-checklist-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 16px;
}

.fw-checklist-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* 2x3 Grid Layout */
.fw-checklist-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.fw-checklist-card {
  flex: 1 1 calc(50% - 12px);
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 28px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fw-checklist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.07);
  border-color: #cbd5e1;
}

/* Checkmark Icon Container */
.fw-checklist-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.fw-checklist-icon svg {
  width: 32px;
  height: 32px;
}

/* Card Content Typography */
.fw-checklist-content {
  flex: 1;
}

.fw-checklist-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 10px 0;
}

.fw-checklist-content p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* Optional CTA Wrapper */
.fw-checklist-cta {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .fw-checklist-grid {
    flex-direction: column;
  }

  .fw-checklist-card {
    width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .fw-checklist-section {
    padding: 60px 0;
  }

  .fw-checklist-header h2 {
    font-size: 1.75rem;
  }

  .fw-checklist-card {
    padding: 24px 20px;
    gap: 16px;
  }
}


/* Section Outer Container (Dark Slate Background to differ from White/Light Gray) */
.fw-cta-section {
  width: 100%;
  clear: both;
  padding: 88px 0;
  background-color: #0f172a; /* Slate Dark Background */
  box-sizing: border-box;
  color: #ffffff;
}

.fw-cta-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Centered CTA Content Box */
.fw-cta-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.fw-cta-content h2 {
  font-size: 2.35rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.fw-cta-copy p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cbd5e1; /* Light Slate/Gray for high legibility */
  margin-bottom: 32px;
}

.fw-cta-copy p:last-child {
  margin-bottom: 32px;
}

/* Button Container Alignment */
.fw-cta-btn-wrapper {
  display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .fw-cta-section {
    padding: 64px 0;
  }

  .fw-cta-content h2 {
    font-size: 1.8rem;
  }

  .fw-cta-copy p {
    font-size: 1rem;
    margin-bottom: 28px;
  }
}



.our-programs-card .single-problem-box:nth-child(2) .problem-box-description-area ul li::before {
    filter: brightness(20);
}


section.full-width-perks.section-padding {
    background: rgb(42, 45, 48);
}

section.full-width-perks.section-padding .single-train-box {
    background: rgba(255, 255, 255, 0.05);
    width: 48%;
}

section.full-width-perks.section-padding .single-train-box h5 {
    color: #fff;
    font-size: 50px;
}

section.full-width-perks.section-padding .single-train-box p {
    font-size: 20px;
    color: #fff;
}


@media screen and (max-width:767px) {
  section.full-width-perks.section-padding .single-train-box{
    width: 100%;
  }
}