/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&family=Geist:ital,wght@0,100..900;1,100..900&display=swap');

/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #E2982B;
  --secondary: #333333;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #F7F5F0;
  overflow-x: hidden;
  height: 100%;
  font-family: "Geist", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #fff;
  margin: 0;
  font-family: "Geist", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: "Crimson Pro", serif;
}

.white {
  color: #fff;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.capitalize {
  text-transform: capitalize;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */


.preLoader {
  position: fixed;
  inset: 0;
  background: #a07e31;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
}

.spinner div {
  width: 8px;
  height: 100%;
  background: #fff;
  margin: 0 2px;
  animation: load 1s infinite ease-in-out;
}

.spinner .rect2 {
  animation-delay: -0.9s;
}

.spinner .rect3 {
  animation-delay: -0.8s;
}

.spinner .rect4 {
  animation-delay: -0.7s;
}

.spinner .rect5 {
  animation-delay: -0.6s;
}

@keyframes load {

  0%,
  40%,
  100% {
    transform: scaleY(0.3);
  }

  20% {
    transform: scaleY(1);
  }
}

/* site hidden at start */
.site {
  opacity: 0;
  transition: 0.5s ease;
}

/* PRELOADER */

/* GLOBAL CSS */



/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  padding: 1.875rem 0;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  width: 210px;
}

.navbar-nav {
  align-items: center;
  gap: 3rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 15px;
  color: #535964;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
}

/* Drop-Down Css Start */

.menu-item {
  position: relative;
}

.menu-item>a {
  display: block;
  color: #535964;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 12px;
  text-transform: uppercase;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -3%;
  background: white;
  min-width: 530px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  margin-top: 5px;
  overflow: hidden;
  height: 0;
  opacity: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dropdown li {
  border-bottom: 1px solid #f0f0f0;
  opacity: 0;
  transform: translateY(-10px);
}

.dropdown li:last-child {
  border-bottom: none;
}

.dropdown a {
  display: block;
  padding: 10px 15px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 12px;
}

.dropdown a:hover {
  background: var(--primary);
  color: white;
  padding-left: 25px;
}

.dropdown li:first-child a:hover {
  border-radius: 8px 8px 0 0;
}

.dropdown li:last-child a:hover {
  border-radius: 0 0 8px 8px;
}

.menu-item .arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
  font-size: 18px;
  cursor: pointer;
}

/* .menu-item:hover .arrow {
  transform: rotate(180deg);
} */

.menu-item.active .arrow {
  transform: rotate(180deg);
}

/* Drop-Down Css End  */

/* !NAV HEADER CSS */



/* Main Banner Css Start */


.main-banner {
  background: url(../images/mainBnnr.webp)center/cover no-repeat;
  height: 1000px;
  display: flex;
}

.top-bar p {
  color: #dadada;
  text-transform: uppercase;
  position: relative;
}

.top-bar {
  background-color: #060D1A;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.top-flex a:first-child {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #E2982B;
  font-family: sans-serif;
}

.top-flex a:first-child {
  animation: blink 2s infinite;
  -webkit-animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.top-flex {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2rem;
}

/* .top-flex a:last-child {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 11px;
  font-weight: 400;
  color: #f5f5f5;
} */

.top-flex a:last-child input {
  background: unset;
  border: unset;
  color: #8f8d8d;
  padding: 7px 10px;
  width: 180px;
  border: 1px solid #8f8d8d;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.top-flex a:last-child input::placeholder {
  font-size: 14px;
  color: #bebebe;
}

.header-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-flex h5 {
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #0B1528;
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
}

.header-flex h5 span {
  display: block;
  font-size: 0.5rem;
  font-weight: 400;
  color: #8D99AE;
  font-family: 'Geist';
}

.main-banner .main-content h2 {
  color: #e4e4e4;
  font-size: 3.4rem;
  width: 77%;
}

.main-content h3 {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #D4A017;
  position: relative;
  /* font-family: 'Geist'; */
  letter-spacing: 2px;
  padding: 0 0 0 4.75rem;
}

.main-content h1 {
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.main-content h1 span {
  color: var(--primary);
}

.main-content h3::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 3rem;
  background-color: #D4A017;
  left: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.main-box h4 {
  font-size: 34px;
  font-weight: 500;
  color: var(--white);
}

.main-box p {
  width: 100% !important;
}

.main-flex {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.main-box:last-child {
  border-left: 2px solid #191919;
  padding-left: 3rem;
}

.main-content p {
  width: 60%;
  color: #6c7178;
  font-size: 2.075rem;
}

.themeBtn {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #0B1528;
  background-color: var(--primary);
  padding: 1rem 2.5rem 1rem 2.5rem;
}

.main-content .btn-group {
  margin: 2rem 0 0 0;
  gap: 1rem;
}

.main-content .btn-group .themeBtn:last-child {
  background-color: transparent;
  border: 1px solid rgb(255 255 255 / 31%);
  color: var(--white);
}

.body-para {
  position: relative;
  font-size: 2rem;
  color: var(--primary);
  font-family: 'Geist';
  font-weight: 600;
  margin-left: 3rem;
}

.anyone-service {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  color: #A0A5B5;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.degree-req {
  margin-top: 1rem;
}

.degree-req li {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  color: #131A2A;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.prior-degree li {
  color: #dadada;
  font-size: 1.2rem;
}

.prior-degree {
  margin-top: 1rem;
}

.body-para::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--text-gold);
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
}

.sub-title {
  font-family: 'Playfair Display', serif;
  font-size: 35px;
  font-weight: 700;
  color: #131A2A;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.main-banner .row .col-md-6 {
  height: 100%;
}

.main-banner .row {
  height: 100%;
}

.main-banner .row .col-md-6 .main-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2rem;
  padding-left: 10px;
}

.main-content h2 {
  color: #0B1528;
  font-size: 39px;
  font-weight: bold;
  text-transform: capitalize;
}

.main-content h3 {
  color: var(--primary);
}

.main-content h4 {
  color: var(--primary);
  font-size: 5.7rem;
}

.main-content h6 {
  padding: 2rem 0;
  border-top: 2px solid var(--primary);
  width: 68%;
  margin-top: 1rem;
  color: var(--primary);
  font-size: 2.4rem;
}

/* Main Banner Css End */

/* Founding Sec Css Start */


.founding-sec {
  background: url(../images/fundingbg.webp)center/cover no-repeat;
  padding: 10rem 0 10rem 0;
}


.founding-content h3 {
  width: fit-content;
  margin: 0 auto 0 auto;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #D4A017;
  letter-spacing: 3px;
  font-family: 'Geist';
  position: relative;
}

.founding-content h3::before,
.founding-content h3::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 2.5rem;
  background-color: #E2982B;
  top: 0;
  bottom: 0;
  margin: auto;
}

.founding-content h3::before {
  left: -3.75rem;
}

.founding-content h3::after {
  right: -3.75rem;
}

.founding-content h2 {
  font-size: 88px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 2px;
  margin: 1rem 0 1rem 0;
}

.founding-content h5 {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
}

.founding-content p {
  color: rgb(255 255 255 / 76%);
  line-height: 1.6;
  margin: 1rem auto 3rem auto;
  width: 80%;
  font-size: 18px;
}

.founding-content .btn-group {
  gap: 1.25rem;
}

.founding-content .btn-group .themeBtn:nth-child(2) {
  background-color: transparent;
  border: 1px solid rgb(255 255 255 / 31%);
  color: var(--white);
}

.founding-content h6 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #D4A017;
  text-transform: uppercase;
  font-family: 'Geist';
  margin: 2rem 0 0 0;
}

/* Founding Sec Css End */


/* Door Sec Css Start */

:root {
  -tf-bg-color: #09111c;
  --tf-card-bg: #121a26;
  --tf-gold: #ebb53b;
  --tf-text-white: #ffffff;
  --tf-text-muted: #8b95a5;
}

.interactive-journeys-wrapper {
  height: 100vh;
  width: 100vw;
  background-color: #000;
}

.journeys-row {
  /* Using flex for accordion behavior */
  display: flex;
}

.journey-panel {
  position: relative;
  height: 100%;
  /* Base flex value for equal distribution */
  flex: 1 0 0%;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(0, 0, 0, 0.4);
  /* Subtle separator */
}

.journey-panel:last-child {
  border-right: none;
}

/* Background Layers */
.journey-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.05);
}

/* Unique Background Images Placeholder matching design context */
.journey-childhood-hands .journey-background {
  background: url(../images/door-1.webp)center/cover no-repeat;
}

.journey-raising-figures .journey-background {
  background: url(../images/door-2.webp)center/cover no-repeat;
}

.journey-working-fabric .journey-background {
  background: url(../images/door-3.webp)center/cover no-repeat;
}

.journey-leading-structure .journey-background {
  background: url(../images/door-4.webp)center/cover no-repeat;
}

.journey-employing-vault .journey-background {
  background: url(../images/Door-5.webp)center/cover no-repeat;
}

.journey-shaping-stones .journey-background {
  background: url(../images/Door-6.webp)center/cover no-repeat;
}

.journey-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.3) 0%, rgba(5, 7, 12, 0.6) 40%, rgba(5, 7, 12, 0.95) 100%);
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
  transform: scale(1);
}

.journey-card:hover .journey-overlay {
  opacity: 1;
  transform: scale(1.02);
}

.door-img img {
  height: 400px;
}

.door-img {
  text-align: center;
}

.door-img a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  justify-content: center;
  color: var(--black);
  font-weight: 600;
}

.door-img a i {
  color: var(--text-gold);
  font-size: 1.2rem;
  font-weight: 500;
}

.content-wrapper.door p {
  width: 100%;
}

/* Content Layout */
.journey-content-wrapper {
  position: relative;
  z-index: 3;
  padding: 3.5rem 2.5rem;
  min-width: 200px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-content-wrapper:hover {
  justify-content: flex-start !important;
}

/* Top Indicator (Number + Line) */
.journey-indicator-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.step-number {
  color: #D4A017;
  font-size: 1.125rem;
  font-weight: bold;
}

.step-line {
  width: 2rem;
  height: 1px;
  background-color: #D4A017;
  opacity: 0.7;
}

/* Optional: Details bottom ko thoda aur smooth banayein */
.journey-details-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nothing p {
  color: #494b4c;
  margin-top: 2rem;
  font-size: 1.5rem;
}

/* Initially Hidden */

.journey-details-bottom p {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.journey-details-bottom p,
.journey-details-bottom .enter-action {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* Paragraph */
.journey-details-bottom p {
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0s linear 0.5s;
}

/* Button */
.journey-details-bottom .enter-action {
  display: flex !important;
  align-items: center;
  gap: 8px;
  width: fit-content;

  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid #fff !important;
  padding: 7px 10px;

  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0s linear 0.5s,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* Paragraph Show */
.journey-content-wrapper:hover .journey-details-bottom p {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* Button Show After Paragraph */
.journey-content-wrapper:hover .journey-details-bottom .enter-action {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  transition-delay: 1.2s;
}


.journey-statement {
  color: var(--white);
  font-size: 2.075rem;
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
  letter-spacing: -0.2px;
  margin-top: 2rem;
}

.journey-content-wrapper:hover .journey-statement br {
  display: none;
}



.systemic-wound-header-row {
  margin-bottom: 50px;
}

.card-row {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 2px solid var(--primary);
}

.about-uact i {
  color: var(--primary);
}

.about-uact a {
  width: fit-content;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 2px solid #e2982b;
  border-bottom: 2px solid #e2982b;
  color: var(--secondary);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: capitalize;
}

.systemic-wound-title {
  font-size: 4rem;
  font-weight: 400;
  color: #0B1528;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -0.3px;
}

.systemic-wound-index {
  font-size: 1.77rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 6px;
}

.systemic-wound-intro {
  font-size: 38px;
  font-weight: 400;
  color: #0B1528;
  margin-bottom: 35px;
  font-family: 'Crimson Pro';
  line-height: 1.2;
  margin-right: -11rem;
}

.systemic-wound-description {
  font-size: 17px;
  color: #1A2332;
  line-height: 1.85;
  margin-bottom: 0;
  max-width: 98%;
}

.exists-content p {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--secondary);
  font-weight: 500;
  width: 80%;
}

.exists-content h4 {
  font-size: 2rem;
  margin-bottom: 1.7rem;
}

.exists-content h5 {
  font-size: 1.6rem;
  margin-top: 6px;
  color: #828282;
}

.michael {
  margin-top: 2rem;
  border-top: 2px solid var(--primary);
  padding-top: 1rem;
  width: 80%;
}

.michael-img img {
  height: 775px;
}

.michael-img {
  text-align: end;
}

.michael .about-uact {
  margin-top: 3rem;
  padding: 0 1rem;
  position: relative;
}

.michael .themeBtn {
  margin-top: 1rem;
}


.pathway-section {
  background-color: #F5F4EF;
  padding: 20px 0 120px;
  color: #333;
  overflow: hidden;
}

.pathway-section-subtitle {
  font-size: 2.07rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 10px;
  font-family: 'Geist';
}

.pathway-section-title {
  font-size: 38px;
  font-weight: 400;
  color: #0B1528;
  margin-bottom: 70px;
  line-height: 1.2;
}

.pathway-section-timeline {
  display: flex;
  flex-direction: column;
}

.pathway-section-item {
  display: flex;
  position: relative;
  padding-bottom: 45px;
  transform: translateY(20px);
}

.pathway-section-item:last-child {
  padding-bottom: 0;
}

.pathway-section-marker {
  width: 40px;
  display: flex;
  justify-content: flex-start;
  padding-left: 5px;
  position: relative;
}

.pathway-section-dot {
  width: 1rem;
  height: 1rem;
  background-color: #E2982B;
  border-radius: 50%;
  margin-top: 2px;
  position: relative;
  z-index: 2;
}

.pathway-section-dot-dark {
  background-color: #1D2330;
  border: 2px solid #DE9942;
  width: 11px;
  height: 11px;
  margin-top: 0px;
  margin-left: -2px;
}

.pathway-section-item:not(:last-child) .pathway-section-marker::after {
  content: '';
  position: absolute;
  top: 16px;
  bottom: -2px;
  left: 13px;
  width: 2px;
  background-color: #EBD3AD;
  z-index: 1;
}

.pathway-section-content {
  flex: 1;
}

.pathway-section-step-num {
  font-size: 1.55rem;
  font-weight: bold;
  color: #E2982B;
  margin-bottom: 6px;
  line-height: 1;
}

.pathway-section-step-title {
  font-size: 2.2rem;
  font-weight: 500;
  color: #0B1528;
  margin-bottom: 6px;
}

.pathway-section-step-desc {
  font-size: 21px;
  color: #727781;
  line-height: 1.6;
}

.scroll-text {
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  color: #797B80;
  position: absolute;
  display: grid;
  place-items: center;
  right: 0;
  bottom: 24px;
  z-index: 11;
  width: fit-content;
  margin: auto;
  left: 0;
}

.form-inline {
  gap: 1rem;
}

.form-inline .themeBtn {
  padding: 1rem 1.875rem 1rem 1.875rem;
  border-radius: 6px;
}

.form-inline .themeBtn:first-child {
  background-color: transparent;
  border: 1px solid #0B1528;
}

.mc-metric-box {
  display: grid;
  grid-template-rows: 1fr 0.8fr auto;
}

.mc-label {
  font-size: 1.77rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

.mc-metrics-row {
  margin-bottom: 80px;
  border-top: 1px solid #E1E0DD;
  padding-top: 7rem;
}

.mc-number {
  font-size: 7rem;
  font-weight: 500;
  color: #D4A017;
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: -1px;
}

.mc-subtitle {
  font-size: 2.375rem;
  font-weight: 500;
  color: #0B1528;
  text-transform: capitalize;
}

.mc-text {
  font-size: 1.375rem;
  color: #666b74;
  line-height: 1.7;
  min-height: 102px;
  align-content: end;
}

.mc-divider-line {
  border: 0;
  border-top: 1px solid #E1E0DD;
  margin: 0;
}

.mc-conclusion-row {
  margin-top: 80px;
}

.mc-conclusion-heading {
  font-size: 56px;
  font-weight: 500;
  color: #0B1528;
}

.mc-cta-btn {
  background-color: var(--mc-gold-color);
  color: var(--mc-dark-color);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 18px 30px;
  border-radius: 0;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mc-cta-btn:hover {
  background-color: #b5831e;
  color: #ffffff;
}

.unct-header {
  margin-bottom: 50px;
}

.unct-header-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Geist';
}

.text-gold {
  color: #D4A017;
}

.text-muted-blue {
  color: var(--text-gold);
}

.text-white {
  color: #ffffff;
}

.text-gray-title {
  color: #fff;
}

.text-muted-desc {
  color: #8D99AE;
}

.unct-header-desc {
  font-size: 1.4375rem;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.5;
  color: #dadada;
}

.unct-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.unct-list-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.unct-icon {
  flex-shrink: 0;
  margin-top: 6px;
}

.unct-icon svg {
  display: block;
}

.unct-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  color: var(--primary);
}

.unct-desc {
  font-size: 1.2375rem;
  line-height: 1.6;
  color: #dadada;
}

.metric-conclusion-wrapper {
  padding: 0 0 9rem 0;
}

#unct-comparison {
  background-color: #1A2332;
}

.trauma-framework-section {
  background-color: #0B1528;
}

/* Subtle Background Lines replicating design details */
.background-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.background-lines .line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.background-lines .line-left {
  left: 15%;
  transform-origin: top;
  transform: rotate(15deg);
}

.background-lines .line-right {
  right: 15%;
  transform-origin: top;
  transform: rotate(-15deg);
}

.trauma-container {
  position: relative;
  z-index: 1;
}

/* 
  Header Styles 
*/
.framework-header {
  margin-bottom: 60px;
}

.accent-label {
  color: #D4A017;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.main-heading {
  font-size: 3.75rem;
  font-weight: 400;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 1.25rem;
}

.sub-description {
  color: rgb(255 255 255 / 76%);
  line-height: 1.6;
  font-weight: 300;
  width: 87%;
  margin: 0 auto;
  font-size: 20px;
}

/* 
  Card Styles 
*/
.framework-cards-row {
  margin-bottom: 60px;
}

.framework-card-col {
  padding: 0 10px;
  margin-bottom: 20px;
}

.framework-card {
  background-color: var(--tf-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  padding: 40px 30px;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.framework-card:hover {
  background-color: #16202f;
}

.active-card {
  border: 1px solid var(--tf-gold);
  box-shadow: 0 0 20px rgba(235, 181, 59, 0.05);
}

.stage-number {
  font-size: 20px;
  color: #D4AF37;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 25px;
}

.stage-title {
  font-size: 2.175rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fff;
}

.stage-desc {
  font-size: 17px;
  color: rgb(255 255 255 / 76%);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 0;
  flex-grow: 1;
}

.gap-label {
  color: #D4A017;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 25px;
  display: inline-block;
  background: rgba(235, 181, 59, 0.1);
  padding: 4px 8px;
  border-radius: 2px;
}

.lead-badge {
  background-color: var(--primary);
  color: #0B1528;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 2px;
  letter-spacing: 1px;
}

/* 
  Footer & Button Styles 
*/
.framework-footer {
  margin-top: 20px;
}

.footer-logo {
  height: 100%;
  display: flex;
  align-items: self-start;
  margin-top: 4rem;
}

.quote-text {
  font-style: italic;
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-custom {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-gold {
  background-color: var(--tf-gold);
  color: #000;
  border: 1px solid var(--tf-gold);
}

.btn-gold:hover {
  background-color: #f0c359;
  color: #000;
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--tf-text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--tf-text-white);
  color: var(--tf-text-white);
  text-decoration: none;
}


.gc-content-col {
  padding-right: 40px;
}

.gc-eyebrow-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.gc-eyebrow-line {
  width: 30px;
  height: 1px;
  background-color: #dda835;
  margin-right: 15px;
}

.gc-eyebrow-text {
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.gc-heading {
  font-size: 3.75rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: #f4f6f9;
  letter-spacing: -0.5px;
}

.gc-description {
  color: rgb(255 255 255 / 76%);
  line-height: 1.8;
  margin-bottom: 35px;
  font-size: 1.2rem;
}

.gc-cta-link {
  color: #dda835;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.gc-cta-link:hover {
  color: #f1c453;
  text-decoration: none;
}

.gc-cta-arrow {
  margin-left: 8px;
  font-size: 14px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.gc-cta-link:hover .gc-cta-arrow {
  transform: translateX(4px);
}

.gc-map-col {
  position: relative;
}

.gc-map-wrapper {
  border: 1px solid rgb(255 255 255 / 06%);
  border-radius: 8px;
  padding: 24px;
}

.gc-map-inner {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background-color: #0d1522;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.gc-map-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
}

.gc-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.gc-map-label {
  position: absolute;
  border: 1px solid var(--primary);
  background-color: rgb(16 42 67 / 90%);
  padding: 6px 10px;
  font-size: 11px;
  color: #ffffff;
  border-radius: 3px;
  display: flex;
  align-items: center;
  z-index: 2;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gc-dot {
  width: 4px;
  height: 4px;
  background-color: #dda835;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 6px rgba(221, 168, 53, 0.8);
}

.gc-label-na {
  top: 28%;
  left: 20%;
}

.gc-label-eu {
  top: 22%;
  left: 55%;
}

.gc-label-asia {
  top: 40%;
  left: 78%;
}

.gc-map-footer {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.gc-telemetry-text {
  color: rgb(255 255 255 / 76%);
  font-size: 14px;
  font-weight: 400;
  font-family: 'Geist';
}

.gc-total-text {
  color: rgb(255 255 255 / 76%);
  font-size: 12px;
}

.gc-highlight {
  color: #dda835;
  font-weight: 700;
}

.growing-coalition-section {
  background-color: #0B1528;
}

.origin-image-wrapper {
  overflow: hidden;
  border-radius: 2px;
}

.origin-main-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.origin-content {
  padding-left: 10px;
}

.origin-eyebrow {
  margin-bottom: 28px;
}

.origin-line {
  width: 25px;
  height: 1px;
  background-color: #DCA85B;
  display: inline-block;
  margin-right: 12px;
}

.origin-eyebrow-text {
  color: #D4A017;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
}

.origin-quote {

  /* Used to match the explicit serif typography in the design */
  font-size: 2rem;
  line-height: 1.5;
  color: #0B1528;
  margin-bottom: 45px;
  border: none;
  padding: 0;
  font-family: 'Crimson Pro';
}

.origin-author-box {
  border-left: 2px solid #DCA85B;
  padding-left: 14px;
  margin-bottom: 45px;
}

.origin-author-name {
  font-size: 1rem;
  font-weight: bold;
  color: #0B1528;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}

.origin-author-title {
  font-size: 13px;
  color: #8D99AE;
  letter-spacing: 0.1px;
}

.origin-link {
  font-size: 13px;
  font-weight: 600;
  color: #0B1528;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.origin-link:hover {
  color: #DCA85B;
  text-decoration: none;
}

.origin-link svg {
  transition: transform 0.3s ease;
}

.origin-link:hover svg {
  transform: translateX(4px);
}

.client-flex {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.origin-image-wrapper {
  flex-shrink: 0;
}

.uact-footer-inner-container {
  max-width: 1240px;
}

/* Top Navigation Area */
.uact-footer-nav-grid-row {
  margin-bottom: 55px;
}

.uact-footer-nav-col {
  margin-bottom: 10px;
}

.uact-footer-nav-heading {
  color: #E2982B;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  font-family: 'Geist';
}

.uact-footer-nav-list-group {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uact-footer-nav-list-item {
  margin-bottom: 16px;
}

.uact-footer-nav-list-item:last-child {
  margin-bottom: 0;
}

.uact-footer-nav-anchor {
  color: #8D99AE;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease-in-out;
}

.uact-footer-nav-anchor:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Separator Line */
.uact-footer-separator-line-element {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.04);
  margin-bottom: 35px;
}

/* Middle Brand & Info Area */
.uact-footer-brand-info-row {
  margin-bottom: 70px;
}

.uact-footer-brand-image-placeholder {
  max-width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* Crisis Support Box */
.uact-footer-support-col {
  display: flex;
  justify-content: center;
}

.uact-footer-crisis-support-box {
  background-color: #171f2e;
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 4px;
}

.uact-footer-crisis-indicator-dot {
  width: 6px;
  height: 6px;
  background-color: #d89f2a;
  border-radius: 50%;
  margin-right: 12px;
}

.uact-footer-crisis-text-prefix {
  color: rgb(255 255 255 / 76%);
  font-size: 12px;
  font-weight: 400;
  margin-right: 4px;
}

.uact-footer-crisis-text-number {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

/* Inspirational Quote */
.uact-footer-inspirational-quote-text {
  color: #D4A017;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;

  /* Visual match for the specific italic serif style in design */
  line-height: 1.4;
  font-family: 'Crimson Pro';
  white-space: nowrap;
}

/* Bottom Copyright & Legal Area */
.uact-footer-copyright-col,
.uact-footer-legal-links-col {
  margin-top: 10px;
}

.uact-footer-copyright-paragraph {
  color: rgb(255 255 255 / 76%);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.uact-footer-copyright-paragraph a {
  color: var(--primary) !important;
  font-weight: 800;
}

.uact-footer-legal-list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.uact-footer-legal-list-item {
  margin-left: 25px;
}

.uact-footer-legal-anchor {
  color: rgb(255 255 255 / 76%);
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.uact-footer-legal-anchor:hover {
  color: #8394a9;
  text-decoration: none;
}

footer.uact-global-footer-section {
  background-color: #0B1528;
  padding: 5rem 0 2rem 0;
}

.uact-footer-copyright-paragraph a {
  color: #8D99AE;
}


.themeBtn:hover {
  background-color: var(--white) !important;
  color: var(--primary) !important;
}

.why-exists {
  padding: 0;
}

.wound-hael {
  text-align: center;
  padding: 3rem;
}

.wound-hael h2 {
  font-size: 3rem;
  text-transform: uppercase;
}



.top-header-inner-1 {
  background-color: #F8F8F7;
  padding: 35px 0;

  width: 100%;
  overflow: hidden;
}

.left-content-wrap-inner-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text-inner-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.uact-title-inner-1 {
  font-size: 12px;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: 0.3px;
}

.uact-subtitle-inner-1 {
  font-size: 7px;
  font-weight: 700;
  color: #A0A0A0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.return-link-inner-1 {
  font-size: 9px;
  font-weight: 800;
  color: #333333;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 6px;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.return-link-inner-1:hover {
  color: #333333;
  opacity: 0.7;
  text-decoration: none;
  transform: translateX(-2px);
}

.return-arrow-inner-1 {
  margin-right: 6px;
}

.btn-leave-inner-1 {
  background-color: #B72025;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 11px 18px;
  border-radius: 3px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(183, 32, 37, 0.25);
  border: unset;
  outline: unset;
}

.btn-leave-inner-1:hover {
  background-color: #93181C;
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(183, 32, 37, 0.35);
}

.leave-icon-inner-1 {
  margin-left: 8px;
}

:root {
  --bg-top: #F4EFEB;
  --bg-bottom: #FDFCF9;
  --text-main: #13171C;
  --text-gray: #73787D;
  --text-kicker: #7B7F64;
  --color-btn: #AC3D2A;
  --color-btn-hover: #923221;
  --color-border: #EDEAE4;
}



.kicker {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-kicker);
  margin-bottom: 1.25rem;
}

.main-heading {
  font-size: 50px;
  font-weight: bold;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

.body-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.body-text.light {
  color: #fff !important;
}

.body-text.gray {
  color: #4E5D6C;
}

.body-text-small {
  font-size: 1.4rem;
  color: #444a4f !important;
}

.body-text-small.light {
  font-size: 1.5rem;
  color: #dadada !important;
  margin-bottom: 2rem;
  transition: all 0.3s;
}

.text-muted-custom {
  color: var(--text-gray);
}

.text-bold-custom {
  color: var(--text-main);
}

.inner-top-1 {
  background-color: var(--bg-top);
  padding: 4rem 0 3.5rem;
}

.inner-bottom-1 {
  background-color: var(--bg-bottom);
  padding: 3.5rem 0 7rem;
}

.help-button {
  background-color: var(--color-btn);
  color: #fff;
  padding: 2.2rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: block;
  text-align: center;
}

.help-button:hover {
  background-color: var(--color-btn-hover);
  color: #fff;
  text-decoration: none;
}

.btn-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.btn-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  color: #EBD1CD;
  display: block;
}

.post-button-text {
  font-size: 1.05rem;
  color: #423b3b;
  text-align: center;
  margin-top: 1rem;
}

.link-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.link-item:first-of-type {
  border-top: 1px solid var(--color-border);
  margin-top: 0.5rem;
}

.link-title {
  font-size: 32px;
  font-weight: bold;
  color: #ffff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  margin-bottom: 0.4rem;
  display: inline-block;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  font-family: 'Crimson Pro';
}

.links-container.it-late .link-title {
  color: #0B1528;
}

.link-title:hover {
  color: var(--color-btn);
  text-decoration-color: var(--color-btn);
}

.link-desc {
  font-size: 1.15rem;
  color: #494b4c;
  margin-bottom: 0;
}



.serif-heading {
  font-family: 'Lora', serif;
  color: #111111;
}

/* Color Variables (Hardcoded for single file output as per instructions) */
.bg-beige {
  background-color: #F3EFE6;
}

.bg-offwhite {
  background-color: #fbfaf8;
}

/* Layout Utilities */
.content-wrapper {
  margin: 0 auto;
  padding: 0 4rem;
}

/* Typography Classes */
.overline-text {
  font-size: 1.5rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #4A5A30 !important;
  margin-bottom: 20px;
}

.main-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 25px;
}

.body-text {
  font-size: 1.5rem !important;
  line-height: 1.7;
  color: #4E5D6C !important;
}

.intro-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.small-text {
  font-size: 0.9rem;
  line-height: 1.6;
}

.action-link {
  font-size: 0.75rem;
  font-weight: 800;
  color: #b93b3b;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.action-link:hover {
  color: #8a2a2a;
  text-decoration: none;
}

/* Specific Sections */

/* Section 1: Somebody */
.section-somebody {
  padding: 40px 0 80px;
}

/* Section 3: Quote */
.quote-block {
  border-left: 3px solid #d4a359;
  padding-left: 25px;
  margin: 20px 0;
}

.quote-heading {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}

/* Section 5: Stat Box */
.stat-container {
  background-color: #F3EFE6;
  border-radius: 4px;
  padding: 30px;
}

.stat-left {
  text-align: left;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-number {

  font-size: 3rem;
  font-weight: 800;
  color: #43523a;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  font-weight: 700;
  margin-top: 1rem;
}

.stat-right {
  padding-left: 30px;
}



/* Section 6: List */
.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #eaeaea;
}

.custom-list li:first-child {
  border-top: 1px solid #eaeaea;
}

.list-number {

  font-size: 1rem;
  font-weight: 800;
  color: #d4a359;
  min-width: 40px;
  padding-top: 2px;
}

.list-content {
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.4;
  color: #222;
}

/* Section 7: Cards */
.info-card {
  background-color: #ffffff;
  padding: 35px;
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.card-title {
  font-size: 35px !important;
  margin-bottom: 10px;
  color: #0B1528 !important;
  font-weight: bold !important;
  font-family: 'Crimson Pro';
  padding-left: 0 !important;
  text-transform: capitalize !important;
}

/* Footer */
.section-footer {
  padding: 80px 0;
}

.cta-btn {
  background-color: #4A5A30;
  border-color: #43523a;
  border-radius: 2px;
  padding: 15px 40px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #2e3a27;
  border-color: #2e3a27;
}

.footer-subtext {
  font-size: 1.6rem;
  color: #121111;
}

h3.card-title.serif-heading::before {
  content: none;
}

.youalreadysee1-wrapper {

  color: #5a5a5a;
  -webkit-font-smoothing: antialiased;
}

.youalreadysee1-wrapper h1,
.youalreadysee1-wrapper h2,
.youalreadysee1-wrapper h3,
.youalreadysee1-wrapper h4 {

  color: #1d1c1a;
  margin-top: 0;
}

.youalreadysee1-bg-1 {
  background-color: #F3EFE6;
  padding: 60px 17rem;
}

.youalreadysee1-bg-2 {
  background-color: #FAF8F5;
  padding: 90px 16rem;
}

.youalreadysee1-bg-3 {
  background-color: #ffffff;
  padding: 90px 0;
}

.youalreadysee1-bg-4 {
  background-color: #f8f7f5;
  padding: 90px 0;
}

.youalreadysee1-eyebrow {
  font-size: 1.5rem !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #5a5a5a;
  margin-bottom: 25px;
}

.youalreadysee1-main-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.youalreadysee1-section-title {
  font-size: 39px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.youalreadysee1-lead-serif {

  font-size: 1.3rem !important;

  color: #838073;

  margin-bottom: 25px;
}

.youalreadysee1-body-text {
  font-size: 1.6rem !important;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #4E5D6C;
}

.youalreadysee1-body-text.text-sm {
  font-size: 13px;
}

.youalreadysee1-body-text.text-dark {
  color: #1d1c1a;
}

.youalreadysee1-cta-link {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #c32c27;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.youalreadysee1-cta-link:hover {
  color: #8a211d;
  text-decoration: none;
}

.youalreadysee1-cta-link .arrow {
  font-size: 9px;
  vertical-align: middle;
  margin-right: 6px;
  position: relative;
  top: -1px;
}

/* Section 2 specific */
.youalreadysee1-quote-wrapper {
  border-left: 2px solid #d89b33;
  padding-left: 35px;
  margin-top: 45px;
}

.youalreadysee1-quote-text {
  font-size: 30px;
  font-weight: 700;
  color: #7a796c;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.youalreadysee1-quote-wrapper .youalreadysee1-body-text {
  margin-bottom: 20px;
}

/* Section 3 specific */
.youalreadysee1-steps-wrapper {
  /* max-width: 800px; */
  margin-top: 40px;
}

.youalreadysee1-steps-list {
  border: 1px solid #eaeaea;
  border-radius: 4px;
  background-color: #ffffff;
}

.youalreadysee1-step-item {
  display: flex;
  align-items: center;
  padding: 18px 25px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 1rem;
}

.youalreadysee1-steps-list .youalreadysee1-step-item:last-child {
  border-bottom: none;
}

.youalreadysee1-step-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #3f453a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-right: 20px;
  flex-shrink: 0;
}

.youalreadysee1-step-name {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #1d1c1a;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.youalreadysee1-step-desc {
  font-size: 17.5px;
  color: #5a5a5a;
}

.youalreadysee1-gap-bar {
  background-color: #d89b33;
  color: #1d1c1a;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  margin: 15px 0;
  letter-spacing: 1px;
}

.youalreadysee1-highlight-card {
  background-color: #f7f3eb;
  border: 1px solid #e2d4bd;
  border-radius: 4px;
  padding: 18px 25px;
  display: flex;
  align-items: center;
}

.youalreadysee1-highlight-card .youalreadysee1-step-badge {
  background-color: #d89b33;
}

.youalreadysee1-highlight-card .youalreadysee1-step-name {
  color: #d89b33;
}

/* Section 4 specific */
.youalreadysee1-feature-box {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 35px 30px;
  border-radius: 4px;
  height: 100%;
}

.youalreadysee1-feature-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.youalreadysee1-feature-desc {
  font-size: 18.5px;
  line-height: 1.6;
  color: #5a5a5a;
  margin-bottom: 0;
}

.will-never-wrapper {
  --wn-warm-bg: #f5efe6;
  --wn-light-bg: #fdfdfc;
  --wn-dark-bg: #111825;
  --wn-text-main: #1a1a1a;
  --wn-text-muted: #5e5e5e;
  --wn-text-light: #9ca3af;
  --wn-accent-red: #cc3333;
  --wn-accent-gold: #c39a5b;

  font-family: 'Lora', serif;
  color: var(--wn-text-main);
  -webkit-font-smoothing: antialiased;
}

.will-never-wrapper .will-never-section {
  padding: 70px 17rem;
  overflow: hidden;
}

/* Backgrounds */
.will-never-wrapper .wn-bg-warm {
  background-color: #F3EFE6;
}

.will-never-wrapper .wn-bg-light {
  background-color: var(--wn-light-bg);
}

.will-never-wrapper .wn-bg-dark {
  background-color: var(--wn-dark-bg);
}

/* Typography */

.will-never-wrapper .wn-h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--wn-text-main);
}

.will-never-wrapper .wn-h3 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #4A5A30;
  margin-bottom: 22px;
}

.semi-text {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.will-never-wrapper .wn-arrow {
  margin-right: 6px;
  font-size: 14px;
  line-height: 1;
}

/* Blockquote */
.will-never-wrapper .wn-blockquote {
  border-left: 3px solid var(--wn-accent-gold);
  padding-left: 30px;
  margin: 20px 0;
}

.will-never-wrapper .wn-quote-text {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: #4A5A30;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.will-never-wrapper .wn-quote-author {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Cards */
.will-never-wrapper .wn-cards-row {
  margin-top: 40px;
}

.will-never-wrapper .wn-card {
  background-color: var(--wn-warm-bg);
  padding: 40px 30px;
  height: 100%;
  border-radius: 0;
}

.will-never-wrapper .wn-card-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 5px;
  color: #4A5A30;
}

.will-never-wrapper .wn-card-subtitle {
  display: block;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--wn-text-muted);
  margin-bottom: 13px;
}

.will-never-wrapper .wn-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--wn-text-muted);
  margin-bottom: 0;
}

/* Dark Section */
.will-never-wrapper .wn-bg-dark .wn-overline {
  color: var(--wn-accent-gold);
}

.main-title.white {
  color: #ffffff;
}

.body-text.body-dark {
  color: var(--wn-text-light) !important;
}

.kicker.gold {
  color: var(--wn-accent-gold);
}

/* Responsive Adjustments */



/* 
.servent1-wrapper {

  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #ffffff;
} */

.servent1-bg-light {
  background-color: #F3EFE6;
}

.servent1-heading-xl {

  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

.servent1-subheading {
  font-size: 1.125rem;
  color: #555555;
  font-weight: 500;
}

.servent1-text-red {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #d84939;
  font-weight: 700;
}

.servent1-link {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #d84939;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.servent1-link span {
  margin-right: 0.5rem;
  font-weight: 800;
}

.servent1-link:hover {
  color: #b0382b;
  text-decoration: none;
}

.servent1-quote-box {
  border-left: 4px solid #d29d49;
  padding-left: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.servent1-quote-text {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  text-transform: capitalize;
}

.servent1-quote-subtext {
  font-size: 1.15rem;
  color: #555555;
  line-height: 1.6;
}

.servent1-small-italic {
  font-style: italic;
  color: #777777;
  font-size: 1.1rem;
}

.servent1-dark-card {
  background-color: #0b132b;
  border-radius: 4px;
  padding: 1.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.servent1-dark-card .servent1-card-title {

  font-size: 1.5rem;

  font-weight: 700;

  margin-bottom: 0.75rem;

  color: #e2cca8;
}

.servent1-dark-card .servent1-card-desc {
  font-size: 1.15rem;
  color: #999999;
  margin-bottom: 12px;
  line-height: 1.4;
}

.servent1-dark-card .servent1-card-value {
  font-size: 1.75rem;
  font-weight: 800;
  margin-top: auto;
  margin-bottom: 0;
}

.servent1-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 0;
}

.servent1-table thead th {
  background-color: #0b132b;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  padding: 1.25rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.servent1-table tbody tr:nth-child(odd) {
  background-color: #fcfbf8;
}

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

.servent1-table tbody td {
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: #333333;
  vertical-align: middle;
}

.servent1-table tbody td:first-child {
  font-weight: 700;
}

.servent1-small-text {
  font-size: 1.2rem;
  color: #777777;
  line-height: 1.5;
}

.servent1-light-card {
  background-color: #f6f4ed;
  border-radius: 4px;
  padding: 2rem;
}

.servent1-light-card .servent1-card-num {

  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.servent1-light-card .servent1-card-title-dark {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.servent1-light-card .servent1-card-text {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.6;
}


p.footer-subtext.mt-3.mb-0 a {
  color: #E2982B;
  font-weight: 500;
}



h2.display-4 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #1a1a1a;
}

.lead {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  color: #4a4a4a;
}

.text-highlight {
  color: #4a5c40;
}

.text-highlight-yellow {
  color: #cda047;
}

.action-link {
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #c9403a !important;
  text-decoration: none;
}

.action-link span {
  font-size: 0.6rem;
  vertical-align: middle;
}

/* Sections Backgrounds */
.youcant-now1-section,
.quote-section,
.conversation-section,
.healing-communities-section,
.final-call-section {
  background-color: #f7f5f0;
}

.youcant-now2-section,
.steps-section,
.ways-to-make-permanent-section {
  background-color: #FAF8F5 !important;
}

/* Quote Section */
.quote-section {
  background-color: #f2eee8;
}

.border-left-quote {
  border-left: 3px solid #cda047;
}

.quote-text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #D4AF37;
  text-transform: uppercase;
}

.quote-subtext {
  font-size: 1.2rem;
  color: #555;
  padding-left: 1.5rem;
}

/* Steps Section */
.step-card {
  background-color: #f4efeb;
  border-radius: 4px;
  border: none;
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #cda047;
  line-height: 1;
}

.step-title {
  font-size: 1.5rem;
  color: #1a1a1a;
  text-transform: capitalize;
}

.step-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.disclaimer-text {
  font-size: 0.9rem;
  color: #1a1a1a;
}

/* Conversation Section */
.conversation-table th {
  font-size: 1.15rem;
  color: #1a1a1a;
  border-top: none;
  padding-left: 0;
}

.conversation-table td {
  font-size: 1.25rem;
  color: #555;
  border-top: none;
}

.conversation-table tr {
  border-bottom: 1px solid #e0dfdb;
}

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

/* Ways to make permanent Section */
.action-card {
  border-color: #e9e7e1 !important;
  border-radius: 4px;
  background-color: #faf9f6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.action-card h5 {
  font-size: 1.8rem;
  color: #1a1a1a;
}

/* Final Call Section */
.final-call-section {
  background-color: #f2eee8;
}

.final-text {
  font-size: 1.2rem;
  color: #2c2c2c;
}

.final-btn {
  background-color: #4a5c40;
  border-color: #4a5c40;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
}

.final-btn:hover {
  background-color: #3b4a33;
  border-color: #3b4a33;
}

.final-link {
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* Padding adjustments for high fidelity */




:root {
  --bg-primary: #080b12;
  --bg-secondary: #0d121a;
  --bg-tertiary: #141924;
  --card-bg: #111722;
  --card-border: #1e2636;

  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #6b7280;
  --accent-gold: #ebb12b;
  --accent-gold-hover: #d19a1c;


}

/* Common Utilities */
.text-gold {
  color: var(--accent-gold) !important;
}

.gold-link {
  color: var(--accent-gold);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
}

.gold-link:hover {
  color: var(--text-main);
}

.gold-link .arrow-right {
  display: inline-block;
  transition: transform 0.3s ease;
}

.gold-link:hover .arrow-right {
  transform: translateX(4px);
}

.btn-gold {
  display: inline-block;
  background-color: var(--accent-gold);
  color: #000;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  color: #000;
  transform: translateY(-2px);
}

.section-subtitle {
  font-size: 1.75rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
}

/* Hero Section */
#baseline-safety-hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #121825 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--card-border);
}

.top-border-line {
  position: relative;
}

.top-border-line::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 15px;
  width: 40px;
  height: 1px;
  background-color: var(--text-dark);
}

.hero-title {
  font-size: 74px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}

.hero-right-content {
  padding-top: 10px;
}

.hero-lead {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  line-height: 1.4;
  color: #fff;
  text-transform: capitalize;
}

.hero-citation {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.gold-marker {
  color: var(--accent-gold);
  font-weight: 700;
  margin-right: 5px;
}

/* Section 1: The Word */
#the-word-section {
  background-color: var(--bg-secondary);
  padding: 100px 0;
}

.dark-card {
  background-color: #111B2E;
  padding: 40px;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.dark-card:hover {
  transform: translateY(-5px);
  border-color: rgba(235, 177, 43, 0.3);
}

.dark-hover-card p {
  font-size: 1.2rem;
}

.card-eyebrow {
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
}

.card-title-lg {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
  text-transform: capitalize;
}

.card-text {
  color: #dadada;
  font-size: 1.5rem;
  min-height: 130px;
}

.tiny-footer-text {
  font-size: 0.75rem;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto;
}

.dark-card {
  background-color: #111B2E;
  padding: 40px;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  justify-content: space-between;
}

.dark-card:hover {
  transform: translateY(-5px);
  border-color: rgba(235, 177, 43, 0.3);
}


/* All titles same height */
.dark-card .feature-title {
  min-height: 58px;
  margin-bottom: 15px;
}


/* Paragraph area same height */
.dark-card .body-text-small {
  min-height: 150px;
  margin-bottom: 20px;
}


/* Link stays at bottom */
.dark-card .link-gold {
  margin-top: auto;
}

/* Section 2: Sheer Scale */
#sheer-scale-section {
  padding: 100px 0 3rem;
  background: #0B1528;
}

.giant-number {
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
}

.giant-number-text {
  font-size: 1.35rem;
  font-family: var(--font-serif);
  max-width: 400px;
  margin: 0;
}

.metric-card {
  border-top: 2px solid rgba(235, 177, 43, 0.5);
  padding: 20px 0;
}

.metric-value {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.metric-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.bottom-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Section 3: Consequences */
#consequences-section {
  background-color: var(--bg-secondary);
  padding: 100px 0;
}

.consequence-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-top: 2px solid var(--accent-gold);
  border-radius: 4px;
  transition: transform 0.3s ease;
  position: relative;
}

.consequence-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.consequence-card:hover {
  transform: translateY(-5px);
}

.card-title-sm {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
  text-transform: capitalize;
  min-height: 60px;
  position: relative;
}

.card-text-sm {
  font-size: 1.45rem;
  color: #dadada;
  margin-bottom: 25px;
  min-height: 138px;
  position: relative;
}

.small-link {
  font-size: 1.25rem;
}

/* Section 4: Onwards */
#onwards-section {
  background: #0B1528;
  padding: 100px 0;
}

.grid-card {
  display: block;
  background-color: var(--card-bg);
  padding: 20px 25px;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  margin-bottom: 15px;
  transition: all 0.2s ease;
  height: 130px;
}

.grid-card:hover {
  background-color: var(--bg-tertiary);
  border-color: rgba(235, 177, 43, 0.4);
}

.what-happenes h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
}

.what-happenes h4 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #131A2A;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.what-happenes p {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  color: #535862;
  line-height: 1.6;
  margin: 0;
  max-width: 350px;
}

.grid-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: capitalize;
}

.grid-text {
  font-size: 1rem;
  color: #dadada;
  margin: 0;
}

/* Footer CTA */
#footer-cta11 {
  background-color: #1A2332;
  padding: 100px 0;
  border-top: 1px solid var(--card-border);
}

.custom-quote {
  border-left: 3px solid var(--accent-gold);
  padding-left: 20px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #fff;
  font-style: italic;
  margin: 30px 0;
}


.consequence-card.cardpurple {
  border-color: #5B6FA8;
}

.consequence-card.cardgreen {
  border-color: #4CB399;
}



.promisebanner {
  background-color: #101722;
  padding: 100px 0;
  color: #8b9bb4;
}

.promisebanner-subtitle-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.promisebanner-line {
  display: inline-block;
  width: 25px;
  height: 1.5px;
  background-color: #c29a47;
  margin-right: 15px;
}

.promisebanner-subtitle {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c29a47;
}

.promisebanner-heading {

  font-size: 42px;
  line-height: 1.25;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 35px;
}

.promisebanner-text {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.promisebanner-quote {
  border-left: 2px solid #c29a47;
  padding-left: 20px;
  margin-top: 45px;
}

.promisebanner-quote-text {

  font-style: italic;

  font-size: 24px;

  color: var(--primary);

  margin: 0;

  line-height: 1.5;
}

.promisebanner-card {
  background-color: #090c14;
  padding: 30px;
}

.promisebanner-card img {
  height: 360px;
  object-fit: cover;
  object-position: top;
}

.promise-of {
  margin-bottom: 3rem;
}

.promisebanner-card-img {
  margin-bottom: 25px;
  display: block;
}

.promisebanner-card-title {

  font-size: 27px;

  color: #ffffff;

  font-weight: 700;

  margin-bottom: 8px;
}

.promisebanner-card-subtitle {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c29a47;
  margin-bottom: 12px;
}

.promisebanner-card-desc {
  font-size: 21px;
  margin-bottom: 5px;
}

.promisebanner-card-divider {
  border-top: 1px solid #1d273a;
  margin-bottom: 25px;
}

.promisebanner-card-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.promisebanner-card-text:last-child {
  margin-bottom: 0;
}

.promisebanner-card-text strong {
  color: #ffffff;
  font-weight: 700;
}


:root {
  --bg-light: #FAF8F5;
  --text-dark: #202223;
  --text-muted: #8f9196;
  --text-red: #B55B49;
  --text-gold: #D8A033;
  --text-green: #6C9682;
  --bg-dark: #131722;
  --card-dark: #1A1F2D;
  --card-pink: #FAEDEB;
  --card-green: #E6F0EB;
  --callout-bg: #EBE4DB;

}




p {
  line-height: 1.6;
}

.text-red {
  color: var(--text-red) !important;
}

.text-gold {
  color: var(--text-gold) !important;
}

.text-green {
  color: var(--text-green) !important;
}

.text-light-gray {
  color: #A0A4AB !important;
}

.promise-section {
  padding: 100px 0;
  overflow: hidden;
}

.bg-light-theme {
  background-color: #FAF8F5;
  padding: 3rem 0;
}

.bg-dark-theme {
  background-color: var(--bg-dark);
  padding: 5rem 0 3rem;
}

.section-title {
  font-weight: 500;
  font-size: 2.8rem;
  margin-bottom: 2.1rem;
  letter-spacing: -0.5px;
  color: #000;
}

.body-text-lg {
  font-size: 1.3rem;
  font-weight: 400;
}

.pre-title {
  display: flex;
  align-items: center;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 20px;
}

.pre-title::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--text-gold);
  margin-right: 15px;
}

.pre-title.justify-content-center::before {
  margin-right: 15px;
}

.pre-title.justify-content-center::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--text-gold);
  margin-left: 15px;
}

.feature-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.link-gold {
  color: var(--text-gold);
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: opacity 0.3s ease;
  font-size: 1.25rem;
}

.link-gold:hover {
  color: var(--text-gold);
  text-decoration: none;
  opacity: 0.8;
}

.link-gold .arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.link-gold:hover .arrow {
  transform: translateX(5px);
}

/* SECTION 2 SPECIFICS */
.callout-box {
  background-color: var(--callout-bg);
  border-left: 3px solid var(--text-gold);
  padding: 30px 40px;
}

.callout-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0;
}

.card-top-border {
  border-top: 2px solid var(--text-gold);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-top-border .feature-title {
  margin-bottom: 15px;
  height: 50px;
}

.card-top-border .body-text-small {
  flex: 1;
  margin-bottom: 20px;
}

.card-top-border .link-gold {
  display: inline-block;
}

/* SECTION 3 SPECIFICS (Timeline) */
.timeline-wrapper {
  position: relative;
  margin: 60px 0 40px;
  height: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-bg-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d8d8d8;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-progress-red {
  position: absolute;
  top: 50%;
  left: 0;
  width: 48%;
  height: 2px;
  background-color: var(--text-red);
  transform: translateY(-50%);
  z-index: 2;
}

.timeline-progress-green {
  position: absolute;
  top: 50%;
  right: 0;
  width: 48%;
  height: 2px;
  background-color: var(--text-green);
  transform: translateY(-50%);
  z-index: 2;
}

.timeline-node {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 100px;
}

.node-start {
  left: 10%;
}

.node-mid {
  left: 50%;
}

.node-end {
  left: 90%;
}

.node-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.node-val {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.node-dot {
  width: 4px;
  height: 15px;
  background-color: #333;
  margin: 0 auto;
}

.dot-red {
  background-color: var(--text-red);
}

.dot-green {
  background-color: var(--text-green);
}

.colored-card {
  padding: 40px;
  border-radius: 4px;
  height: 100%;
}

.card-pink {
  background-color: var(--card-pink);
}

.card-green {
  background-color: var(--card-green);
}

.card-subtitle {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.colored-card .card-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* SECTION 4 SPECIFICS */
.custom-5-cols .col-5ths {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 15px;
}

.dark-card {
  background-color: var(--card-dark);
  padding: 30px 25px;
  border-radius: 4px;
  height: 100%;
  border-top: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.dark-card:hover {
  border-top: 1px solid var(--text-gold);
}

.step-number {
  background-color: var(--text-gold);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 8px 15px;
  border-radius: 20px;
  font-family: 'Crimson Pro';
}

/* SECTION 5 SPECIFICS */
.category-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-gold);
  margin-top: 15px;
  display: flex;
  align-items: center;
}

.category-title::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: var(--text-gold);
  margin-right: 10px;
}

.mini-card {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 2px;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.mini-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.mini-card h6 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--tf-card-bg);
  min-height: 53px;
}

.signup-box {
  background-color: var(--bg-dark);
  padding: 40px 50px;
  border-radius: 4px;
}

.signup-box p {
  margin: 1rem 0
}

.btn-gold {
  background-color: var(--text-gold);
  color: var(--bg-dark);
  border: none;
  border-radius: 2px;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.btn-gold:hover {
  background-color: #e5b045;
  color: var(--bg-dark);
}


:root {
  --red-color: #a82522;
  --green-color: #63907c;
  --dark-color: #151b24;
  --gray-color: #999b9e;
  --bg-color: #f7f6f2;
}


.app-container {
  background-color: var(--bg-color);
}

.assessment-card {
  background: #ffffff;
  border: 1px solid #efefef;
  border-radius: 12px;
  padding: 48px 56px;
  max-width: 850px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.label-title {

  font-size: 11px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.6px;

  margin-bottom: 12px;

  margin-left: 10px;
}

.label-value {

  font-size: 26px;

  font-weight: 700;

  line-height: 1;

  margin-left: 14px;
}

.text-suffering {
  color: var(--red-color);
}

.text-baseline {
  color: var(--gray-color);
}

.text-baseline-val {
  color: var(--dark-color);
}

.text-flourishing {
  color: var(--green-color);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
}

.slider-track {
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red-color) 0%, #cf7b79 32%, #dfdfdf 50%, #9cb6a8 68%, var(--green-color) 100%);
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.8);
}

.slider-input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
  margin: 0;
  outline: none;
}

/* Increase native thumb size for better drag area while remaining invisible */
.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.slider-input::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
}

.slider-thumb {
  position: absolute;
  left: 50%;
  /* Default visually, overwritten by JS */
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 24px;
  background-color: var(--dark-color);
  border-radius: 2px;
  pointer-events: none;
  z-index: 5;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
}

/* Hover interaction using DOM sibling selector */
.slider-input:hover~.slider-thumb {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider-input:active~.slider-thumb {
  transform: translate(-50%, -50%) scale(0.95);
  background-color: #000;
}


.inner-banner {
  background-color: #0d1421;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.inner-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 18%;
  width: 1px;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.04);
  transform: rotate(20deg);
  pointer-events: none;
}

.inner-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: 40%;
  width: 1px;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.02);
  transform: rotate(20deg);
  pointer-events: none;
}

.inner-banner .inner-banner-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.inner-banner .inner-banner-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.inner-banner .inner-banner-breadcrumb .line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background-color: #E2982B;
  margin-right: 14px;
}

.inner-banner .inner-banner-breadcrumb a {
  color: #d39f4e;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 2.2rem;
  font-weight: 700;
}

.inner-banner .inner-banner-breadcrumb a:hover {
  color: #ffffff;
}

.inner-banner .inner-banner-breadcrumb .separator {
  margin: 0 5px;
  color: #d39f4e;
}

.inner-banner .inner-banner-title {
  font-size: 96px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
}


/* coalition  */
#coalition_s {
  color: #333;
  background-color: #F7F5F0;
  padding-bottom: 0;
}

#coalition_s h1,
#coalition_s h2,
#coalition_s h3,
#coalition_s h4,
#coalition_s h5,
#coalition_s h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-size: 2.3rem;
}

#coalition_s .section_7 {
  background: #F7F5F0 !important;
}

.subtitle {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

#coalition_s .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a1f2b;
}

#coalition_s .desc {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Section 1 */
#coalition_s .section_1 .subtitle_2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}

#coalition_s .section_1 .dark_box {
  background-color: #1a1f2b;
  color: #fff;
  padding: 3rem;
  border-radius: 4px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

#coalition_s .section_1 .dark_box_text {
  color: #E2982B;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: justify;
}

#coalition_s .section_1 .dark_box_subtext {
  color: #dadada;
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.8;
  text-align: left;
}

#coalition_s .section_1 .title_2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

#coalition_s .section_1 .link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section 2 */
#coalition_s .section_2 .card_item {
  background: transparent;
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid #0b15281f;
  height: 100%;
}

#coalition_s .section_2 .card_num {
  color: #d1b777;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

#coalition_s .section_2 .card_title {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

#coalition_s .section_2 .card_desc {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

/* Section 3 */
#coalition_s .section_3_wrapper {
  background-color: #F7F5F0;
}

#coalition_s .dark_strip {
  background-color: #1a1f2b;
  color: #fff;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
}

#coalition_s .section_3_wrapper .card_item {
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #F7F5F0 !important;
}

#coalition_s .section_3_wrapper .card_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

#coalition_s .section_3_wrapper .card_subtitle {
  color: #d1b777;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* Section 4 */
#coalition_s .timeline_wrapper {
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

#coalition_s .timeline_item {
  padding-right: 1rem;
}

#coalition_s .timeline_item .step {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

#coalition_s .timeline_item .timeline_title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

#coalition_s .timeline_item .timeline_desc {
  font-size: 1.35rem;
  line-height: 1.5;
  color: #666;
}

#coalition_s .timeline_item.active {
  background-color: #1a1f2b;
  color: #fff;
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: -1.5rem;
}

#coalition_s .timeline_item.active .step {
  color: #d1b777;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#coalition_s .timeline_item.active .timeline_desc {
  color: rgba(255, 255, 255, 0.8);
}

#coalition_s .timeline_item.active .badge {
  background-color: #d1b777;
  color: #1a1f2b;
  font-size: 0.7rem;
  margin-left: 0.5rem;
}

#coalition_s .highlight_box {
  background-color: #f5f5f5;
  border-left: 4px solid #d1b777;
}

#coalition_s .highlight_title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

#coalition_s .highlight_desc {
  font-size: 1.35rem;
  color: #555;
  margin: 0;
}

/* Section 5 */
#coalition_s .section_5 {
  background-color: #0B1528 !important;
}

#coalition_s .section_5 .stat_num {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #d1b777 !important;
}

#coalition_s .section_5 .stat_label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.7;
}



/* Section 6 */
#coalition_s .join_card {
  border: 1px solid #eee;
  border-top: 4px solid #d1b777;
}

#coalition_s .join_card .card_type {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

#coalition_s .join_card .card_title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#coalition_s .join_card ul li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #555;
}

#coalition_s .join_card .btn-dark {
  background-color: #1a1f2b;
  border-color: #1a1f2b;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
}

#coalition_s .join_card .btn-dark:hover {
  background-color: #333;
}

/* Section 7 */
#coalition_s .section_7 .info_item {
  border: 1px solid #eee;
  transition: all 0.2s ease;
  cursor: pointer;
  background: #F7F5F0 !important;
}

#coalition_s .section_7 .info_item:hover {
  border-color: #d1b777;
  transform: translateY(-2px);
}

#coalition_s .section_7 .info_title {
  font-size: 27px;
  margin-bottom: 0.2rem;
  font-weight: 600;
  text-transform: capitalize;
  min-height: 58px;
}

/* Section 8 */

#coalition_s .section_8 .footer_cta_title {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}

#coalition_s .section_8 .btn-warning {
  background-color: #E2982B;
  border-color: #E2982B;
  color: #1a1f2b;
  font-weight: 700;
  padding: 0.8rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

#coalition_s .section_8 .btn-warning:hover {
  background-color: #c0a566;
  border-color: #c0a566;
}

.bgwraps {
  background-color: #0B1528;
  padding: 3rem 0;
}

p.card_desc {
  color: #1A2332;
  font-size: 18px;
  font-weight: 400;
  width: 80%;
  margin-bottom: 4rem;
}

.section_2 p.subtitle_2 {
  color: #000;
  margin-bottom: 1rem;
}

/* coalition  */




.foundationsection1 {
  background-color: #F7F5F0;
  /* font-family: 'Manrope', sans-serif; */
  color: #222;
  padding: 80px 0;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.foundationsection1 .header-row {
  margin-bottom: 35px;
}

.foundationsection1 .sub-heading {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.foundationsection1 .main-heading {

  font-weight: 600;
  font-size: 34px;
  color: #1A1A1A;
  margin-bottom: 20px;
  line-height: 1.2;
}

.foundationsection1 .intro-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
  max-width: 87%;
}

/* Image */
.foundationsection1 .image-row {
  margin-bottom: 50px;
}

.foundationsection1 .main-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Quote */
.foundationsection1 .quote-row {
  margin-bottom: 50px;
}

.foundationsection1 .quote-container {
  background-color: #F4F4F2;
  padding: 35px 40px 35px 0;
  display: inline-block;
  width: 100%;
}

.foundationsection1 .custom-quote {
  border-left: 2px solid #CFA951;
  padding-left: 25px;
  margin: 0;
  font-weight: 500;
  font-size: 2rem;
  color: #444;
  line-height: 1.5;
}

/* Cards */
.foundationsection1 .cards-row {
  margin-bottom: 60px;
}

.foundationsection1 .card-col {
  margin-bottom: 20px;
}


.foundationsection1 .action-card {
  background-color: #F3F3F1;
  padding: 30px;
  display: block;
  text-decoration: none;
  height: 100%;
  transition: background-color 0.2s ease;
}

.foundationsection1 .action-card:hover {
  background-color: #ECECE9;
  text-decoration: none;
}

.foundationsection1 .card-title {

  font-weight: 600;
  font-size: 15px;
  color: #222;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.foundationsection1 .card-desc {
  font-size: 10px;
  color: #777;
  font-weight: 400;
}

/* Footer */
.foundationsection1 .found1-content {
  border-top: 1px solid #EAEAE8;
  padding-top: 30px;
}

.foundationsection1 .found1-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.foundationsection1 .found1-links-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.foundationsection1 .found1-link {
  font-weight: 500;
  font-size: 28px;
  color: #222;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.foundationsection1 .found1-link:hover {
  opacity: 0.7;
  text-decoration: none;
  color: #222;
}

/* Arrows */
.foundationsection1 .gold-arrow {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.foundationsection1 .action-card:hover .gold-arrow,
.foundationsection1 .footer-link:hover .gold-arrow {
  transform: translateX(3px);
}

p.inner-bannerpara {
  font-size: 1.525rem;
  font-weight: 400;
  color: #dadada;
  width: 67%;
  margin: 1rem auto 0;
}




.vission-missionsec1 {
  background-color: #FAF8F5;
  padding: 80px 0;
  color: #1a1e28;
}

.vission-missionsec1 .vision-box,
.vission-missionsec1 .mission-box {
  background-color: #f7f6f4;
  padding: 40px 50px;
  height: 100%;
  position: relative;
}

.vission-missionsec1 .vision-box {
  border-left: 2px solid #8e9185;
}

.vission-missionsec1 .mission-box {
  border-left: 2px solid #dfa552;
}

.vission-missionsec1 .label-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.vission-missionsec1 .vision-label {
  color: #8e9185;
}

.vission-missionsec1 .mission-label {
  color: #dfa552;
}


.vission-missionsec1 .box-text {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  margin: 0;
  color: #2b303a;
}

.vission-missionsec1 .what-uact-is-not-row {
  margin-top: 80px;
  margin-bottom: 40px;
}

.vission-missionsec1 .section-subtitle {
  font-size: 10px;
  font-weight: 700;
  color: #6c757d;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.vission-missionsec1 .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1e28;
  margin-bottom: 0;
}



.vission-missionsec1 .feature-item {
  margin-bottom: 40px;
}

.vission-missionsec1 .feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #dfa552;
  margin-bottom: 15px;
}

.vission-missionsec1 .feature-text {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
  color: #1a1e28;
  margin-bottom: 0;
}


.eight-operating1 {
  background-color: #FAF8F5;
  padding: 100px 0 120px 0;
  color: #2D2C28;
}

.eight-operating1 .principle-row {
  padding: 45px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.eight-operating1 .principle-row:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.eight-operating1 .principle-item {
  display: flex;
  align-items: flex-start;
  padding-right: 30px;
}

.eight-operating1 .principle-item .number {
  color: #D3A744;
  font-size: 13px;
  font-weight: 700;
  margin-right: 24px;
  margin-top: 2px;
}

.eight-operating1 .principle-item .content h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 12px;
  line-height: 1.3;
}

.eight-operating1 .principle-item .content p {
  font-size: 13px;
  font-weight: 400;
  color: #6C6C6C;
  margin-bottom: 0;
  line-height: 1.6;
}

.eight-operating1 .continue-section {
  margin-top: 100px;
}

.eight-operating1 .continue-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #1A1A1A;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.eight-operating1 .continue-card {
  display: block;
  background-color: #F3F1EC;
  padding: 40px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  height: 100%;
}

.eight-operating1 .continue-card:hover {
  background-color: #EBE8E1;
  text-decoration: none;
  transform: translateY(-2px);
}

.eight-operating1 .continue-card h5 {
  font-size: 16px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.eight-operating1 .continue-card h5 .arrow {
  font-family: Arial, sans-serif;
  font-weight: 400;
  margin-left: 5px;
}

.eight-operating1 .continue-card p {
  font-size: 13px;
  color: #6C6C6C;
  margin-bottom: 0;
  line-height: 1.6;
}


.wall-that-hold1 {
  background-color: #F9F8F6;
  padding: 80px 0;

  color: #333333;
}

.wall-that-hold1 .title {

  color: #6B7454;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.wall-that-hold1 .description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5A5A5A;
  margin-bottom: 70px;
  font-weight: 400;
}

.wall-that-hold1 .list-container {
  margin-bottom: 100px;
}

.wall-that-hold1 .list-row {
  border-top: 1px solid #EBEBEB;
  padding: 35px 0;
}

.wall-that-hold1 .label {
  font-weight: 800;
  color: #1A1A1A;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.wall-that-hold1 .value {
  font-weight: 400;
  color: #666666;
  font-size: 0.9rem;
  line-height: 1.7;
  display: block;
}

.wall-that-hold1 .continue-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #555555;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.wall-that-hold1 .continue-card {
  background-color: #F2F1EF;
  padding: 35px 40px;
  height: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wall-that-hold1 .continue-card:hover {
  background-color: #EBEAE8;
}

.wall-that-hold1 .card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 12px;
}

.wall-that-hold1 .card-desc {
  font-size: 0.85rem;
  color: #959595;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}

.threepiller1 {
  background-color: #fcfbf8;

  padding-top: 90px;
  padding-bottom: 90px;
  color: #2c3531;
}

.threepiller1 .threepiller1-top-row {
  margin-bottom: 60px;
}

.threepiller1 .threepiller1-card {
  background-color: #f7f6f0;
  padding: 35px 30px;
  border-radius: 4px;
  height: 100%;
}

.threepiller1 .threepiller1-card-gold {
  border-top: 4px solid #d8ae47;
}

.threepiller1 .threepiller1-card-green {
  border-top: 4px solid #4a5a3a;
}

.threepiller1 .threepiller1-card-title {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #1a1e1c;
  margin-bottom: 4px;
}

.threepiller1 .threepiller1-card-subtitle {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #838883;
  margin-bottom: 20px;
}

.threepiller1 .threepiller1-card-text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #525652;
  margin-bottom: 0;
}

.threepiller1 .threepiller1-middle-text {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3b3f3b;
  margin: 0;
}

.threepiller1 .threepiller1-divider {
  border-top: 1px solid #e9e8e0;
  margin-top: 60px;
  margin-bottom: 30px;
  width: 100%;
}

.threepiller1 .threepiller1-continue-label {

  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #5c6b48;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.threepiller1 .threepiller1-bottom-card {
  display: block;
  background-color: #f7f6f0;
  padding: 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  height: 100%;
}

.threepiller1 .threepiller1-bottom-card:hover {
  background-color: #f1efec;
  text-decoration: none;
}

.threepiller1 .threepiller1-bottom-title {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1a1e1c;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.threepiller1 .threepiller1-bottom-title span {
  margin-left: 8px;

  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.threepiller1 .threepiller1-bottom-card:hover .threepiller1-bottom-title span {
  transform: translateX(4px);
}

.threepiller1 .threepiller1-bottom-text {

  font-size: 0.85rem;
  line-height: 1.5;
  color: #999c99;
  margin-bottom: 0;
}

.being-form1 {
  background-color: #F9F9F7;
  padding: 60px 0;
  min-height: 100vh;
  color: #3A3F44;
}

.being-form1 .section-label {

  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #82887F;
  font-weight: 700;
  margin-bottom: 20px;
}

.being-form1 .main-statement {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  line-height: 1.65;
  color: #444A50;
  font-weight: 400;
  margin-bottom: 60px;
}

.being-form1 .effort-list {
  border-top: 1px solid #EBECE8;
  border-bottom: 1px solid #EBECE8;
}

.being-form1 .effort-item {
  padding: 35px 0;
  border-bottom: 1px solid #EBECE8;
}

.being-form1 .effort-item:last-child {
  border-bottom: none;
}

.being-form1 .effort-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2B3035;
  margin: 0;
}

.being-form1 .effort-desc {

  font-size: 0.8rem;
  color: #62686E;
  line-height: 1.7;
  margin: 0;
}

.being-form1 .quote-block {
  border-left: 3px solid #C69C3A;
  padding-left: 25px;
  margin: 50px 0;
}

.being-form1 .quote-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #656C5E;
  margin: 0;
}

.being-form1 .continue-card {
  display: block;
  background-color: #F5F6F3;
  border: 1px solid #EDEDE9;
  border-radius: 4px;
  padding: 35px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.being-form1 .continue-card:hover {
  text-decoration: none;
  background-color: #EFEFEA;
}

.being-form1 .continue-card .card-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2B3035;
  margin-bottom: 12px;
}

.being-form1 .continue-card .card-desc {

  font-size: 0.8rem;
  color: #7B8187;
  line-height: 1.6;
  margin: 0;
}



.globelinner1 {
  background-color: #0c121e;
  padding: 100px 0;
  color: #7d8898;
}

.globelinner1 .globelinner1-subtitle {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.globelinner1 .globelinner1-line {
  width: 30px;
  height: 1px;
  background-color: var(--primary);
  display: inline-block;
  margin-right: 15px;
}

.globelinner1 .globelinner1-title {
  color: #ffffff;
  font-size: 88px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.globelinner1 .globelinner1-subheading {
  font-style: italic;
  color: #c09d47;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.globelinner1 .globelinner1-cards-wrap {
  margin-top: 60px;
}

.globelinner1 .globelinner1-card {
  padding: 40px;
  border-radius: 4px;
  height: 100%;
}

.globelinner1 .globelinner1-card-light {
  background-color: #f8f6f0;
}

.globelinner1 .globelinner1-card-light .globelinner1-card-title {
  font-family: 'Merriweather', serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #181d26;
}

.globelinner1 .globelinner1-card-light .globelinner1-card-text {
  font-size: 21px;
  line-height: 1.8;
  color: #4a5462;
  margin-bottom: 0;
}

.globelinner1 .globelinner1-card-dark {
  background-color: #2b2b2b;
  border: 1px solid #4a422a;
  padding: 40px 30px;
}

.globelinner1 .globelinner1-card-dark .globelinner1-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.globelinner1 .globelinner1-card-dark .globelinner1-card-title {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 0;
  max-width: 60%;
}

.globelinner1 .globelinner1-btn {
  background-color: #d1a12a;
  color: #000000;
  font-size: 16px;
  font-weight: 800;
  padding: 12px 18px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.globelinner1 .globelinner1-btn:hover {
  background-color: #b88d23;
  color: #000000;
  text-decoration: none;
}

.globelinner1 .globelinner1-card-dark .globelinner1-card-text {
  font-size: 21px;
  color: #dadada;
  line-height: 1.6;
  margin-bottom: 0;
}


.globel-section-new {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.globel-section-new .hover-card {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform, box-shadow;
}

.globel-section-new .hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06) !important;
}

.hover-card h3 {
  margin-bottom: 1.1rem;
  line-height: 1.1;
  font-size: 2.2rem;
  font-weight: 700;
}

.globel-section-new .dark-hover-card {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform, box-shadow;
}

.globel-section-new .dark-hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
}

.dark-hover-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 124px;
}

.dark-hover-card h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
  line-height: 1.4;
}

.globel-section-new .btn-primary-custom {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.globel-section-new .btn-primary-custom:hover {
  background-color: #B38936 !important;
  transform: translateY(-2px);
}



.s.about-inner1 {
  background-color: #10151f;
  color: #ffffff;
  padding: 100px 0;
  overflow-x: hidden;
}

.s.about-inner1 .top-label {
  font-size: 12px;
  font-weight: 700;
  color: #c9a65c;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.s.about-inner1 .top-label .dash {
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: #c9a65c;
  margin-right: 12px;
}

.s.about-inner1 .main-heading {

  font-size: 52px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.s.about-inner1 .sub-heading {

  font-size: 22px;
  font-weight: 400;
  color: #c9a65c;
  margin-bottom: 0;
}

.s.about-inner1 .body-text {
  font-size: 15px;
  line-height: 1.8;
  color: #9da3af;
  font-weight: 400;
  max-width: 95%;
}

.s.about-inner1 .hypothesis-box {
  background-color: #090d15;
  padding: 35px 30px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.s.about-inner1 .hypo-title {
  font-size: 11px;
  font-weight: 800;
  color: #c9a65c;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.s.about-inner1 .hypo-text {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 0;
}

.s.about-inner1 .info-card {
  background-color: #1e2431;
  padding: 40px 35px;
  border-radius: 4px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.s.about-inner1 .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.s.about-inner1 .card-label {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 20px;
}

.s.about-inner1 .card-titleabt {

  font-size: 2rem;

  font-weight: 600;

  color: #ffffff;

  margin-bottom: 15px;
}

.s.about-inner1 .card-quote {

  font-size: 15px;
  font-style: italic;
  color: #c9a65c;
  margin-bottom: 0;
}

.s.about-inner1 .footer-text {
  font-size: 12px;
  color: #9da3af;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.s.about-inner1 .footer-link {
  font-size: 12px;
  font-weight: 800;
  color: #c9a65c;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.s.about-inner1 .footer-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.s.about-inner1 .footer-link .arrow {
  margin-left: 8px;
  font-size: 15px;
  transition: transform 0.3s ease;
}

.s.about-inner1 .footer-link:hover .arrow {
  transform: translateX(4px);
}

/* abt  */

/* Common Elements */
.tag-line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #c9a65c;
  vertical-align: middle;
  margin-right: 12px;
}

/* About Section */
.about-section-new {
  padding: 100px 0 80px;
  background-color: #f7f5ef;
}

.about-section-new .about-main-title {

  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 35px;
  color: #1b1e24;
}

.about-section-new .about-text-content {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #333;
}

.about-section-new .about-text-content p {
  margin-bottom: 20px;
  color: #000;
}

.about-section-new .about-blockquote {

  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
  color: #1b1e24;
  border-left: 3px solid #cb8f1f;
  padding-left: 25px;
  margin: 40px 0;
}

.about-section-new .about-small-text {
  font-size: 13px;
  line-height: 1.6;
  color: #777;
  margin-bottom: 30px;
  max-width: 90%;
}

.about-section-new .about-read-more {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #cb8f1f;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.about-section-new .about-read-more:hover {
  opacity: 0.8;
  color: #cb8f1f;
  text-decoration: none;
}

.about-section-new .about-image {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  width: 100%;
  object-fit: cover;
}

/* Board Section */
.board-section-new {
  padding: 80px 0;
  background-color: #f7f5ef;
}

.board-section-new .board-header-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #c9a65c;
}

.board-section-new .board-main-title {

  font-size: 2.8rem;

  font-weight: 700;

  color: #1b1e24;

  margin: 0;
}

.board-section-new .board-header-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-top: 15px;
}

.board-section-new .board-member-card {
  background: transparent;
}

.board-section-new .board-member-card img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  margin-bottom: 15px;
}

.board-section-new .board-member-info h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1b1e24;
}

.board-section-new .board-member-info p {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin: 0;
}

.board-section-new .board-empty-card {
  height: 100%;
  min-height: 250px;
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
}

.board-section-new .board-empty-inner {
  width: 100%;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.board-section-new .board-empty-inner span {
  display: block;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 8px;
}

.board-section-new .board-empty-inner h5 {
  font-size: 16px;
  font-weight: 600;
  color: #999;
  margin: 0;
}

.board-section-new .board-orange-banner {
  background-color: #d19a27;
  padding: 18px 25px;
  border-radius: 2px;
  color: #1b1e24;
  font-weight: 700;
  font-size: 19px;
}

.board-section-new .board-orange-banner .banner-arrow {
  font-size: 18px;
}

/* Content Section */
.content-section-new {
  padding: 80px 0 100px;
  background-color: #f7f5ef;
}

.content-section-new .content-header-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #c9a65c;
}

.content-section-new .content-header-tag .tag-line {
  background-color: #d19a27;
}

.content-section-new .content-main-title {

  font-size: 38px;
  font-weight: 700;
  color: #1b1e24;
  margin-bottom: 15px;
}

.content-section-new .content-sub-title {
  font-size: 15px;
  color: #555;
  max-width: 600px;
}

.content-section-new .content-card {
  background-color: #fcfbf9;
  padding: 35px 25px;
  height: 100%;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card h5 {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
}

.content-section-new .content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.content-section-new .content-card h4 {

  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1b1e24;
}

.content-section-new .content-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
  min-height: 217px;
}

.content-section-new .content-card a {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d19a27;
  text-decoration: none;
}

.content-section-new .content-action-banner {
  display: flex;
  align-items: stretch;
  background-color: #f0e6dd;
  border-radius: 2px;
  overflow: hidden;
}

.content-section-new .content-action-banner .action-highlight {
  background-color: #f3e6d8;
  padding: 15px 25px;
  font-size: 17px;
  font-weight: 800;
  color: #c77b28;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.content-section-new .content-action-banner .action-text {
  padding: 15px 25px;
  font-size: 20px;
  color: #666;
  display: flex;
  align-items: center;
  text-transform: capitalize;
}

/* Footer Section */
.abtftr-section-new {
  background-color: #0c121e;
  padding: 100px 0;
  color: #fff;
}

.abtftr-section-new .abtftr-header-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #c9a65c;
}

.abtftr-section-new .abtftr-header-tag .tag-line {
  background-color: #cb8f1f;
}

.abtftr-section-new .abtftr-main-title {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
}

.abtftr-section-new .abtftr-group-title {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #dadada;
  margin-bottom: 20px;
}

.abtftr-section-new .abtftr-group-title .arrow {
  margin-right: 8px;
}

.abtftr-section-new .abtftr-card {
  background-color: #141b2b;
  padding: 25px 20px;
  border-radius: 4px;
  height: 100%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.abtftr-section-new .abtftr-card:hover {
  background-color: #1c2538;
}

.abtftr-section-new .abtftr-card h4 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
  min-height: 73px;
}

.abtftr-section-new .abtftr-card p {
  font-size: 20px;
  color: #dadada;
  margin: 0;
}


/* abt  */

.top-bar.redbar {
  background: #B32626;
  padding: 4px;
}

.top-bar.redbar p {
  font-size: 13px;
  color: #fff;
  text-transform: capitalize;
}

.top-bar.redbar p a {
  color: #fff;
  font-weight: bold;
}

.red-flex {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
}

.red-flex .themebtn {
  background: rgb(255 255 255 / 14%);
  padding: 10px 20px;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
}

.paraflex1 a {
  color: #fff;
  font-weight: bold;
}

.white {
  color: #fff;
}


section.inner-banner.crsis-inner1 .inner-banner-content {
  text-align: inherit;
}

/* section.inner-banner.crsis-inner1 .inner-banner-breadcrumb {
  justify-content: left;
} */

/* section.inner-banner.crsis-inner1 p.inner-bannerpara {
  margin-left: 0;
} */


section.inner-banner.crsis-inner1 p.inner-bannerpara {
  color: #fff;
  width: 60%;
}


section.inner-banner.crsis-inner1 .inner-banner-title {
  font-size: 64px;
  text-transform: capitalize;
}



/* childhood  */
.childhood-trauma-wrapper {

  color: #4a4a4a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.childhood-trauma-intro {
  background-color: #F7F5F0;
}

.childhood-trauma-myths {
  background-color: #FAF8F5;
  border-top: 1px solid #f0efeb;
  border-bottom: 1px solid #f0efeb;
}

.childhood-trauma-continue {
  background-color: #F7F5F0;
  padding-bottom: 120px;
}

.childhood-trauma-card {
  background-color: #F7F5F0;
  border: 1px solid #ebeae5;
  padding: 40px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.childhood-trauma-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.childhood-trauma-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 16px;
  line-height: 1.4;
}

.childhood-trauma-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid #e3e2dd;
  padding-bottom: 20px;
  transition: all 0.3s ease;
  color: #5d9382;
}

.childhood-trauma-link:hover {
  text-decoration: none;
  border-bottom-color: #5d9382;
  color: #5d9382;
}

.childhood-trauma-link:hover svg {
  transform: translateX(5px);
}

.childhood-trauma-link svg {
  transition: transform 0.3s ease;
}

.childhood-trauma-link-text {
  font-size: 2rem;
  font-weight: 600;
}

/* childhood  */


/* the-secience */

#the-science {
  background-color: #f8f7f5;
  color: #2b3035;
  overflow-x: hidden;
  padding: 0;
}

#the-science p {
  margin-bottom: 0;
}

#the-science .content-section {
  padding: 85px 0;
  background: #F7F5F0;
}

#the-science .bottom-section {
  padding-top: 85px;
  padding-bottom: 30px;
}

#the-science .eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5d6368;
  margin-bottom: 25px;
}

#the-science .main-heading {

  font-size: 42px;

  font-weight: 500;

  color: #1a1e22;

  margin-bottom: 45px;
}

#the-science .body-text {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #40454a;
  font-weight: 400;
}

#the-science .highlight-box {
  background-color: #e8f0ef;
  border-left: 4px solid #3d8b76;
  padding: 35px 45px;
  margin-bottom: 15px;
}

#the-science .highlight-heading {

  font-size: 1.8rem;
  font-weight: 600;
  color: #3d8b76;
  margin-bottom: 12px;
}

#the-science .highlight-text {
  font-size: 18px;
  color: #1a1e22;
  line-height: 1.6;
}

#the-science .citation {

  font-style: italic;
  font-size: 15px;
  color: #888f93;
}

#the-science .bottom-link {

  font-size: 32px;

  font-weight: 600;

  color: #3d8b76;

  text-decoration: none;

  transition: color 0.3s ease;
}

#the-science .bottom-link:hover {
  color: #2a6152;
  text-decoration: none;
}

#the-science .bottom-link-icon {
  font-size: 24px;
  color: #3d8b76;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

#the-science .bottom-link-icon:hover {
  color: #2a6152;
  transform: translateX(5px);
  text-decoration: none;
}

#the-science .full-divider {
  height: 1px;
  background-color: #e3e1db;
  width: 100%;
}


/* the-secience */


.the-limit1 {
  background-color: #FAF8F5;
  /* Matching the top background color */
  color: #2b2b2b;
  padding-top: 80px;
  padding-bottom: 0;
}

/* Typography settings */
.the-limit1 h1,
.the-limit1 h2,
.the-limit1 h3,
.the-limit1 h4,
.the-limit1 h5,
.the-limit1 h6 {
  font-family: 'Playfair Display', serif;
}

.the-limit1 .section-subtitle {
  font-family: 'Geist';
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #555;
}

.the-limit1 .section-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 40px;
  color: #333;
  font-family: 'Crimson Pro';
}

/* List Styles */
.the-limit1 .custom-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.the-limit1 .custom-list li {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  /* margin-bottom: -2px; */
  position: relative;
  color: #333;
  font-family: 'Geist';
}

/* Numbered List Specifics */
.the-limit1 .numbered-list li {
  padding-left: 30px;
}

.the-limit1 .numbered-list .num {
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 0.75rem;
  top: 22px;
}

/* Bulleted List Specifics (Right Side) */
.the-limit1 .bulleted-list li {
  padding-left: 20px;
}

.the-limit1 .bulleted-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  font-size: 1rem;
  top: 18px;
  color: #f06a66;
  /* Red bullet color */
}

.the-limit1 .list-footer.italic {
  font-style: italic;
  font-size: 1.05rem;
  color: #666;
}

/* Red Text Classes for Exclusions */
.the-limit1 .red-text {
  color: #f06a66 !important;
}

/* Separator Line for Exclusions */
.the-limit1 .exclusions-col .list-content {
  border-left: 4px solid #f06a66;
  padding-left: 40px !important;
}

/* Spacing adjustments for columns */
.the-limit1 .list-section {
  margin-bottom: 60px;
}

/* Highlight Section at the bottom */
.the-limit1 .highlight-section {
  background-color: #F7F5F0;
  /* Slightly darker beige */
  padding: 100px 0;
}

.the-limit1 .highlight-box {
  background-color: #e4f0ed;
  /* Light teal background */
  border-left: 3px solid #378b7b;
  /* Dark teal border */
  padding: 40px 50px;
  margin: 0 auto;
}

.the-limit1 .highlight-text {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.6;
  color: #378b7b;
  margin-bottom: 20px;
}

.the-limit1 .highlight-subtext {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0;
}

.The-brain1 .top-area {
  background-color: #FAF8F5;
  padding: 100px 0;
}

.The-brain1 .middle-area {
  background-color: #f5f4ef;
  padding: 90px 0;
}

.The-brain1 .bottom-area {
  background-color: #fbf9f6;
  padding: 80px 0 120px 0;
}

.The-brain1 .brain-card {
  background-color: #fdfcfb;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.The-brain1 .card-title {

  font-size: 1.05rem;
  font-weight: 700;
  color: #3b4247;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

.The-brain1 .card-divider {
  border: 0;
  border-top: 1px solid #ecdac5;
  margin: 0 0 20px 0;
}

.The-brain1 .card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #63686b;
  font-weight: 400;
  margin-bottom: 0;
}

.The-brain1 .quote-box {
  background-color: #e9f2f1;
  border-left: 4px solid #428b80;
  padding: 45px 50px;
}

.The-brain1 .quote-text {
  font-weight: bold;
  color: #428b80;
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'Crimson Pro';
}

.The-brain1 .quote-cite {

  font-style: italic;
  font-size: 1rem;
  color: #638580;
  margin-bottom: 0;
}

.The-brain1 .continue-link {

  font-size: 1.8rem;
  font-weight: 700;
  color: #ce9644;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.The-brain1 .continue-link:hover {
  opacity: 0.8;
  color: #ce9644;
  text-decoration: none;
}

section.The-brain1 {
  padding: 0;
}



.The-alarm1 {
  background-color: #FAF8F5;
  padding: 80px 0 100px;
  color: #333;
  overflow: hidden;
}

.The-alarm1 .alarm-card {
  background-color: #f5f5f2;
  padding: 35px 40px;
  border-radius: 2px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.02);
  height: 100%;
  border: 1px solid rgb(11 21 40 / 7%);
}

.The-alarm1 .card-title {

  color: #3a455a;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.The-alarm1 .title-separator {
  width: 100%;
  height: 1px;
  background-color: #dccb99;
  margin: 18px 0;
}

.The-alarm1 .card-text {
  color: #7b7d82;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 0;
}

.The-alarm1 .divider {
  border-top: 1px solid #f1f0e9;
  margin: 0;
  width: 100%;
}

.The-alarm1 .quote-container {
  margin-top: 50px;
  background: #F7F5F0;
}

.The-alarm1 .quote-wrapper {
  background-color: #fdf5f5;
  border-left: 4px solid #c94040;
  padding: 35px 40px;
  position: relative;
}

.The-alarm1 .quote-text {

  color: #c94040;

  font-size: 2rem;

  font-weight: bold;

  margin-bottom: 12px;

  letter-spacing: -0.01em;

  font-family: 'Crimson Pro';
}

/* four1  */

#the-four1 {
  background-color: #FAF8F5;
  padding-top: 100px;
  padding-bottom: 100px;
  color: #333;
  overflow: hidden;
}

#the-four1 .custom-container {
  max-width: 1400px;
  /* padding-left: 30px; */
  padding-right: 30px;
}

#the-four1 .info-card {
  background-color: #FDFCF8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  border: 1px solid #EFECE5;
  border-radius: 0;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}

#the-four1 .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

#the-four1 .card-top-border {
  height: 4px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#the-four1 .card-physical .card-top-border {
  background-color: #CD4F42;
  padding-top: 10px;
}

#the-four1 .card-mental .card-top-border {
  background-color: #43749C;
  padding-top: 10px;
}

#the-four1 .card-social .card-top-border {
  background-color: #557B64;
  padding-top: 10px;
}

#the-four1 .card-spiritual .card-top-border {
  background-color: #DCB15B;
  padding-top: 10px;
}

#the-four1 .card-inner {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #FAF8F5;
}

#the-four1 .card-category {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#the-four1 .card-category i {
  font-size: 11px;
}

#the-four1 .card-physical .card-category {
  color: #CD4F42;
}

#the-four1 .card-mental .card-category {
  color: #43749C;
}

#the-four1 .card-social .card-category {
  color: #557B64;
}

#the-four1 .card-spiritual .card-category {
  color: #DCB15B;
}

#the-four1 .card-title {

  font-size: 23px !important;

  font-weight: 600;

  line-height: 1.35;

  color: #2E353F;

  margin-bottom: 16px;
}

#the-four1 .title-divider {
  border: 0;
  height: 1px;
  background-color: #E6E4DF;
  margin: 0 0 20px 0;
  width: 100%;
}

#the-four1 .card-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #74777B;
  font-weight: 400;
  margin-bottom: 0;
}

#the-four1 .bottom-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #EAE8E2;
  position: relative;
}

#the-four1 .continue-label {
  font-size: 9px;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

#the-four1 .continue-link {
  font-size: 32px;
  color: #CD4F42;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

#the-four1 .continue-link:hover {
  color: #a83d33;
  text-decoration: none;
}

#the-four1 .continue-link .arrow {
  margin-left: 8px;

  font-weight: 300;
  font-size: 22px;
  transition: transform 0.3s ease;
}

#the-four1 .continue-link:hover .arrow {
  transform: translateX(5px);
}

/* four1  */

#and-it1 {
  background-color: #F8F6F4;
  color: #1B1B1B;
  padding-top: 80px;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#and-it1 .and-it1-main-container {
  padding-bottom: 70px;
}

#and-it1 .and-it1-chart-card {
  background-color: #F7F5F0;
  border: 1px solid rgb(11 21 40 / 7%);
  border-radius: 2px;
  padding: 70px 40px;
  margin-bottom: 55px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.01);
}

#and-it1 .and-it1-chart-row {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

#and-it1 .and-it1-chart-row:last-child {
  margin-bottom: 0;
}

#and-it1 .and-it1-chart-label {
  flex: 0 0 32%;
  text-align: right;
  padding-right: 20px;
  font-size: 1rem;
  font-weight: 500;
  color: #111111;
  line-height: 1.3;
  letter-spacing: -0.1px;
}

#and-it1 .and-it1-chart-bar-wrap {
  flex: 0 0 53%;
  height: 20px;
}

#and-it1 .and-it1-chart-bar {
  height: 100%;
  background-color: #DB941F;
  transform-origin: left;
}

#and-it1 .and-it1-chart-value {
  flex: 0 0 15%;
  padding-left: 12px;
  font-size: 13px;
  font-weight: 800;
  color: #111111;
}

#and-it1 .and-it1-text-area {
  padding-right: 20px;
}

#and-it1 .and-it1-highlight-title {

  color: #51785A;

  font-size: 2rem;

  font-weight: 600;

  margin-bottom: 12px;

  line-height: 1.4;

  letter-spacing: -0.3px;
}

#and-it1 .and-it1-citation {

  font-style: italic;
  font-size: 1rem;
  color: #8A8A8A;
  margin-bottom: 0;
  letter-spacing: 0.1px;
}

#and-it1 .and-it1-bottom-bar {
  border-top: 1px solid #EBEAE6;
  padding: 45px 0 80px 0;
}

#and-it1 .and-it1-continue-block {
  display: flex;
  flex-direction: column;
}

#and-it1 .and-it1-continue-link {
  color: #CA483B;
  font-size: 3rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-block;
  align-self: flex-start;
  font-family: 'Crimson Pro';
}

#and-it1 .and-it1-continue-link:hover {
  opacity: 0.85;
  text-decoration: none;
  color: #CA483B;
  transform: translateX(4px);
}

#death-in1 {
  background-color: #FAF8F5;
  color: #33322E;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 2rem;
}

#death-in1 .content-wrapper {
  padding: 80px 0 60px;
}

#death-in1 .intro-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #3A3A3A;
  margin-bottom: 60px;
}

#death-in1 .intro-text strong {
  font-weight: 700;
  color: #222;
}

#death-in1 .stats-box {
  background-color: #F6F6F2;
  border: 1px solid #EAE9E2;
  border-radius: 4px;
  padding: 55px 65px 35px;
  margin-bottom: 70px;
}

#death-in1 .stats-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

#death-in1 .stats-number {
  font-size: 4.8rem;
  font-weight: 700;
  color: #C89C2E;
  line-height: 1;
  margin-right: 35px;
}

#death-in1 .stats-text {
  font-size: 1.25rem;
  color: #4A4A4A;
  flex: 1;
  min-width: 280px;
  line-height: 1.4;
}

#death-in1 .stats-divider {
  height: 1px;
  background-color: #E6E4DD;
  margin-bottom: 25px;
}

#death-in1 .stats-bottom {
  font-size: 1.1rem;
  font-weight: 800;
  color: #2D2D2D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#death-in1 .stats-bottom .sep {
  margin: 0 10px;
  color: #888;
}

#death-in1 .section-subtitle {
  font-size: 1.25rem;
  font-weight: 800;
  color: #597862;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}

#death-in1 .how-built-desc {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 20px;
}

#death-in1 .how-built-note {
  font-size: 1.25rem;
  color: #8D8C8A;
  margin-bottom: 0;
}

#death-in1 .continue-wrapper {
  background-color: #FAF8F5;
  border-top: 1px solid #EBEAE4;
  padding: 60px 0;
}

#death-in1 .continue-label {
  display: block;

  font-size: 0.65rem;
  font-weight: 800;
  color: #A09F9B;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

#death-in1 .continue-link {

  font-size: 1.8rem;
  font-weight: 600;
  color: #C74E45;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

#death-in1 .continue-link:hover {
  opacity: 0.8;
  text-decoration: none;
  color: #C74E45;
}

/* years-of-life */

/* Base Section Styles */
.years-of-life {
  background-color: #FAF8F5;
  color: #333333;
  padding-top: 5rem;
  padding-bottom: 6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Utilities */

/* Chart Card */
.years-of-life .yol-chart-card {
  background-color: #f6f5f2;
  padding: 3.5rem 4rem;
  border-radius: 2px;
  margin-bottom: 4.5rem;
  border: 1px solid #00000014;
}

.years-of-life .yol-chart-header {
  margin-bottom: 2rem;
}

.years-of-life .yol-title {

  font-size: 2rem;

  font-weight: 700;

  color: #2b2b2b;

  margin: 0;

  letter-spacing: -0.01em;
}

/* Chart Data Rows */
.years-of-life .yol-chart-body {
  margin-bottom: 2.5rem;
}

.years-of-life .yol-data-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.9rem;
}

.years-of-life .yol-data-row:last-child {
  margin-bottom: 0;
}

.years-of-life .yol-label {
  width: 162px;
  text-align: right;
  padding-right: 1.25rem;
  font-size: 1rem;
  font-weight: bold;
  color: #8D99AE;
  flex-shrink: 0;
}

.years-of-life .yol-bar-track {
  flex-grow: 1;
  display: flex;
  align-items: center;
  height: 12px;
}

.years-of-life .yol-bar {
  height: 16px;
  background-color: #d89311;
  border-radius: 0;
}

.years-of-life .yol-bar.yol-pip {
  width: 3px;
  background-color: #9ba4b3;
}

.years-of-life .yol-value {
  width: 90px;
  padding-left: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #7b8390;
  flex-shrink: 0;
}


/* Highlighted Row */
.years-of-life .yol-highlight .yol-label {
  font-weight: bold;
  color: #2b2b2b;
  font-size: 1rem;
}

.years-of-life .yol-highlight .yol-value {
  color: #d89311;
  font-weight: 700;
}

/* Chart Footer */
.years-of-life .yol-chart-footer {
  font-size: 0.85rem;
  color: #9ba4b3;
  font-weight: 500;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e6e1;
}

/* Main Text Area */
.years-of-life .yol-text-main {
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.years-of-life .yol-text-main p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #3b3b3b;
  margin: 0;
}

.years-of-life .yol-text-main strong {
  font-weight: 700;
  color: #222;
}

/* Highlighted Green Text */
.years-of-life .yol-text-highlight {
  margin-bottom: 5.5rem;
  padding: 0 1rem;
}

.years-of-life .yol-text-highlight p {
  font-size: 38px;
  line-height: 1.5;
  font-weight: bold;
  color: #49785b;
  margin: 0;
  font-family: 'Crimson Pro';
}

/* CTA Section */
.years-of-life .yol-cta-section {
  border-top: 1px solid #eeebe6;
  padding-top: 2rem;
  padding-left: 1rem;
}

.years-of-life .yol-cta-section .yol-eyebrow {
  color: #9ba4b3;
  margin-bottom: 0.75rem;
}

.years-of-life .yol-cta-link {
  font-size: 3rem;
  font-weight: bold;
  color: #c9564a;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: inline-block;
  font-family: 'Crimson Pro';
}

.years-of-life .yol-cta-link:hover {
  opacity: 0.7;
  text-decoration: none;
  color: #c9564a;
}

/* years-of-life */



#the-economic {
  background-color: #faf9f6;
  padding: 80px 0;
  color: #3a4149;
  overflow: hidden;
}


#the-economic .stat-card {
  background-color: #f4f4ef;
  padding: 30px 25px;
  height: 100%;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  border: 1px solid #00000014;
}

#the-economic .stat-value {
  font-size: 40px;
  font-weight: bold;
  color: #0B1528;
  margin-bottom: 12px;
}

#the-economic .stat-desc {
  font-size: 18px;
  color: #8D99AE;
  margin-bottom: 0;
  line-height: 1.5;
}

#the-economic .lead-text {
  font-size: 19px;
  line-height: 1.8;
  color: #3a4149;
  margin-top: 60px;
  margin-bottom: 0;
  max-width: 950px;
}

#the-economic .quote-wrapper {
  margin-top: 50px;
}

#the-economic .quote-box {
  background-color: #f6f7f2;
  padding: 40px;
  border-radius: 2px;
}

#the-economic .quote-text {
  font-size: 2rem;
  font-weight: bold;
  color: #417d54;
  margin: 0;
  line-height: 1.6;
  font-family: 'Crimson Pro';
}

#the-economic .quote-source {
  font-size: 1.4rem;
  color: #8D99AE;
  font-style: italic;
  margin-top: 25px;
  margin-left: 5px;
  font-family: 'Crimson Pro';
}

#the-economic .divider {
  border-top: 1px solid #e8e8e8;
  margin-top: 70px;
  margin-bottom: 40px;
}

#the-economic .continue-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #9fa3a9;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

#the-economic .continue-link {
  font-size: 1.8rem;
  font-weight: 700;
  color: #cc493f;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
  font-family: 'Crimson Pro';
}

#the-economic .continue-link:hover {
  opacity: 0.8;
  text-decoration: none;
  color: #cc493f;
}


.most-risk {
  background-color: #FAF8F5;
  padding: 60px 0;
  color: #1a1a1a;
}

.most-risk .risk-list {
  background-color: #F7F5F0;
  border-radius: 4px;
  border: 1px solid #eaeaea;
  margin-bottom: 60px;
}

.most-risk .risk-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 50px;
  border-bottom: 1px solid #eaeaea;
}

.most-risk .risk-item:last-child {
  border-bottom: none;
}

.most-risk .risk-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

.most-risk .risk-desc em {
  font-style: italic;
}

.most-risk .badge {
  font-size: 10px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.most-risk .badge-green {
  background-color: #3b7454;
  color: #ffffff;
}

.most-risk .badge-yellow {
  background-color: #df9e2c;
  color: #1a1a1a;
}

.most-risk .badge-dark {
  background-color: #1a1a1a;
  color: #ffffff;
}

.most-risk .next-section-link {
  padding-top: 50px;
  border-top: 1px solid #eaeaea;
  margin-top: 20px;
}

.most-risk .small-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.most-risk .link-title {
  font-size: 3rem;
  font-weight: 700;
  color: #c95b54;
  text-decoration: none;

  transition: color 0.3s ease;
}

.most-risk .link-title:hover {
  color: #a8453f;
  text-decoration: none;
}

#generatual-trauma .section-title {
  color: #3b6351;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

#generatual-trauma .list-container {
  background-color: #f6f5f0;
  border: 1px solid #eae9e4;
  border-radius: 4px;
}

#generatual-trauma .list-item {
  padding: 30px 40px;
  margin: 0;
  border-bottom: 1px solid #eae9e4;
  transition: background-color 0.3s ease;
}

#generatual-trauma .list-item:last-child {
  border-bottom: none;
}

#generatual-trauma .list-item>div {
  padding: 0;
}

#generatual-trauma .item-title {
  color: #1c2532;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

#generatual-trauma .item-badge-container {
  display: flex;
  justify-content: flex-end;
}

#generatual-trauma .custom-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#generatual-trauma .badge-green {
  background-color: #3b6351;
  color: #ffffff;
}

#generatual-trauma .badge-yellow {
  background-color: #e8a838;
  color: #1c2532;
}

#generatual-trauma .badge-navy {
  background-color: #1c2532;
  color: #ffffff;
}


section#generatual-trauma {
  background: #FAF8F5;
}

#the-evindence {
  background-color: #fbfaf6;

  padding: 80px 0;
  color: #333;
}

#the-evindence .ev-filters-row {
  margin: 30px 0;
}

#the-evindence .ev-filter-label {
  font-size: 10px;
  font-weight: 800;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 20px;
}

#the-evindence .ev-filter-btn {
  font-size: 14px;
  font-weight: 800;
  color: #0d1726;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-right: 5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

#the-evindence .ev-filter-btn.active,
#the-evindence .ev-filter-btn:hover {
  background-color: #0d1726;
  color: #fff;
}

#the-evindence .ev-table-container {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}

#the-evindence .ev-table-header {
  background-color: #0d1726;
  color: #cca267;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#the-evindence .ev-table-row {
  transition: background-color 0.2s ease;
}

#the-evindence .ev-table-row:nth-child(odd) {
  background-color: #ffffff;
}

#the-evindence .ev-table-row:nth-child(even) {
  background-color: #f5f4ef;
}

#the-evindence .ev-table-row:hover {
  background-color: #f0f0f0;
}

#the-evindence .ev-figure {

  font-weight: 700;
  font-size: 20px;
  color: #0d1726;
}

#the-evindence .ev-claim {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 400;
}

#the-evindence .ev-source {
  font-size: 15px;
  color: #888;
}

#the-evindence .ev-footer-banner {
  background-color: #f5f4ef;
  padding: 25px 40px;
  border-radius: 4px;
}

#the-evindence .ev-download-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #3b5f43;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#the-evindence .ev-banner-title {
  color: #3b5f43;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 4px;
}

#the-evindence .ev-banner-subtitle {
  color: #8da492;
  font-size: 14px;
}

#the-evindence .ev-btn-download {
  background-color: #3b5f43;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  transition: background-color 0.2s;
}

#the-evindence .ev-btn-download:hover {
  background-color: #2a4430;
  color: #fff;
}


.trauma-recovery-section {
  background-color: #f9f8f6;
  padding: 100px 0;
  min-height: 100vh;
}

.trauma-intro-box {
  border: 1px solid #e8e6e1;
  background-color: transparent;
  padding: 40px;
  margin-bottom: 60px;
}

.trauma-intro-text {
  color: #7a7a7a;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
}

.trauma-advice-list {
  display: flex;
  flex-direction: column;
}

.trauma-advice-item {
  border-top: 1px solid #e8e6e1;
  padding: 40px 0;
}

.trauma-advice-item:last-child {
  border-bottom: 1px solid #e8e6e1;
}

.trauma-advice-number {
  display: block;
  font-size: 18px;
  color: #c79a46;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.trauma-advice-title {
  font-family: 'Merriweather', serif;
  font-size: 32px;
  color: #1a1c1e;
  font-weight: 700;
  margin: 0;
}

.shame-trauma-sec {
  background-color: #F9F8F6;
  padding: 80px 0;

  color: #7B7A77;
}

.shame-trauma-sec .st-intro-box {
  background-color: #FCFBF9;
  border: 1px solid #EAE7E1;
  border-radius: 6px;
  padding: 24px 32px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.shame-trauma-sec .st-intro-box p {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
  color: #6a6a6a;
  font-weight: 500;
}

.shame-trauma-sec .st-list-wrapper {
  border-top: 1px solid #EAE7E1;
  border-bottom: 1px solid #EAE7E1;
}

.shame-trauma-sec .st-list-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #EAE7E1;
  padding: 28px 0;
}

.shame-trauma-sec .st-list-row:last-child {
  border-bottom: none;
}

.shame-trauma-sec .st-list-left {
  width: 38%;
  padding-right: 20px;
  flex-shrink: 0;
}

.shame-trauma-sec .st-list-right {
  width: 62%;
}

.shame-trauma-sec .st-list-num {
  display: flex;
  align-items: center;
  color: #D38640;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.shame-trauma-sec .st-line {
  width: 14px;
  height: 1px;
  background-color: #D38640;
  margin-left: 8px;
}

.shame-trauma-sec .st-list-left h4 {

  font-weight: 700;
  color: #1b2631;
  font-size: 18px;
  margin: 0;
}

.shame-trauma-sec .st-list-right p {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  color: #707070;
  font-weight: 500;
}

.shame-trauma-sec .st-evidence-box {
  background-color: #EEF4F9;
  border-radius: 8px;
  padding: 24px 28px;
  margin-top: 48px;
}

.shame-trauma-sec .st-ev-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.shame-trauma-sec .st-ev-header svg {
  margin-right: 8px;
}

.shame-trauma-sec .st-ev-header span {
  color: #41677C;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.shame-trauma-sec .st-evidence-box p {
  color: #6A8696;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.shame-trauma-sec .st-evidence-box p strong {
  color: #1C4155;
  font-weight: 700;
}

.trauma-support-section {
  background-color: #FBFBFA;
  padding: 60px 0;
  color: #2D3134;
}

.trauma-support-container {
  max-width: 860px;
  margin: 0 auto;
}

/* Intro Box */
.trauma-intro-box {
  background-color: #F6F6F4;
  padding: 24px 32px;
  border-radius: 4px;
  margin-bottom: 50px;
}

.trauma-intro-text {
  font-size: 18px;
  line-height: 1.6;
  color: #6C7073;
  margin: 0;
  font-weight: 400;
}

/* List Section */
.trauma-list-wrapper {
  margin-bottom: 40px;
}

.trauma-list-item {
  border-bottom: 1px solid #F0F0EE;
  padding: 30px 0;
  margin: 0;
}

.trauma-list-item.border-bottom-0 {
  border-bottom: none !important;
}

.trauma-list-left {
  padding-right: 20px;
}

.trauma-number-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.trauma-number {
  color: #D4A97A;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-right: 6px;
}

.trauma-line {
  height: 1px;
  width: 12px;
  background-color: #D4A97A;
  display: inline-block;
}

.trauma-heading {
  /* font-family: 'Playfair Display', serif; */
  font-size: 25px;
  font-weight: 700;
  color: #1A1C1D;
  line-height: 1.3;
  margin: 0;
}

.trauma-list-right {
  padding-left: 0;
}

.trauma-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #5D6266;
  margin: 0;
  font-weight: 400;
}

/* Citation Box */
.trauma-citation-box {
  background-color: #EEF4FA;
  border-radius: 6px;
  padding: 20px 24px;
  margin-top: 10px;
}

.trauma-citation-header {
  margin-bottom: 8px;
}

.trauma-citation-icon {
  color: #607D94;
  margin-right: 6px;
}

.trauma-citation-label {
  font-size: 10px;
  font-weight: 700;
  color: #607D94;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.trauma-citation-text {
  font-size: 12px;
  color: #3B4A56;
  margin: 0;
  line-height: 1.5;
}

.trauma-citation-text strong {
  font-weight: 700;
  color: #27343E;
}

.sec-mechanism-wrapper {
  background-color: #fbfaf8;
  color: #232528;
}

.sec-mechanism-top-quote {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  padding: 24px 32px;
  font-size: 14px;
  font-weight: 400;
  color: #636569;
  line-height: 1.7;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
}

.sec-mechanism-list {
  margin-bottom: 32px;
}

.sec-mechanism-item {
  border-bottom: 1px solid #f0eeec;
  padding: 32px 0;
  align-items: flex-start;
}

.sec-mechanism-item:first-child {
  padding-top: 10px;
}

.sec-mechanism-title-col {
  padding-right: 20px;
}

.sec-mechanism-orange-dash {
  display: block;
  width: 14px;
  height: 2px;
  background-color: #cf6b44;
  margin-bottom: 12px;
  border-radius: 2px;
}

.sec-mechanism-item-title {
  font-size: 17px;
  font-weight: 800;
  color: #232528;
  margin-bottom: 0;
  line-height: 1.3;
}

.sec-mechanism-item-desc {
  font-size: 14px;
  font-weight: 400;
  color: #636569;
  margin: 0;
  line-height: 1.5;
}


.sec-mechanism-blue-box {
  background-color: #f0f5fc;
  border-radius: 4px;
  padding: 24px 32px;
}

.sec-mechanism-blue-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.sec-mechanism-blue-icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  fill: none;
  stroke: #2e577d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sec-mechanism-blue-title {
  font-size: 11px;
  font-weight: 800;
  color: #2e577d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.sec-mechanism-blue-desc {
  font-size: 13px;
  font-weight: 400;
  color: #445e75;
  margin: 0;
  line-height: 1.6;
}

.history-guidelines-section {
  padding: 80px 0;
}

.history-guidelines-section .guideline-intro-box {
  background-color: #FCFBF9;
  border: 1px solid #EAE5DF;
  border-radius: 4px;
  padding: 24px 32px;
  margin-bottom: 55px;
}

.history-guidelines-section .guideline-intro-box p {
  margin: 0;
  color: #767471;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}

.history-guidelines-section .guideline-list {
  border-bottom: 1px solid #EAE5DF;
  margin-bottom: 50px;
}

.history-guidelines-section .guideline-item {
  border-top: 1px solid #EAE5DF;
  padding: 35px 0;
}

.history-guidelines-section .item-number {
  color: #D0A163;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.history-guidelines-section .item-number .dash {
  margin-left: 2px;
  font-weight: 400;
}

.history-guidelines-section .item-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 21px;
  color: #222933;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.history-guidelines-section .item-desc {
  color: #767471;
  font-size: 13.5px;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

.history-guidelines-section .guideline-evidence-box {
  background-color: #EDF3F8;
  border: 1px solid #E0E9F1;
  border-radius: 6px;
  padding: 24px 28px;
}

.history-guidelines-section .evidence-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #3B627E;
}

.history-guidelines-section .evidence-header svg {
  margin-right: 8px;
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.history-guidelines-section .evidence-header span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.history-guidelines-section .evidence-text {
  color: #324C60;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.history-guidelines-section .evidence-text strong {
  font-weight: 700;
}


/* The Knowing Doing Page start */
.knowing {
  color: #4A5A30;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist';
}

.knowing span {
  width: 100%;
  height: 1px;
  background: #4A5A30;
}

.knowing {
  margin-bottom: 3rem;
}

.trauma h3 {
  color: #0B1528;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Crimson Pro';
  margin-bottom: 12px;
}


/* Trauma Card Styles */
.trauma-card {
  padding: 30px 25px;
  border-radius: 8px;
  transition: transform 0.3s ease;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.trauma-card:hover {
  transform: translateY(-5px);
}

.trauma-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0B1528;
  letter-spacing: 0.5px;
  font-family: 'Crimson Pro';
}

.trauma-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #0B1528;
  margin: 0;
  font-family: 'Geist';
}

.cards-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trauma-card {
  width: 250px;
  height: 200px;
  border-radius: 8px;
  padding: 28px 24px;
  gap: 14px;
  flex: 1;
}

.card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.3;
}

.card p {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.5;
  font-weight: 400;
}

/* Card 1 - Trauma Unaware */
.card-1 {
  background-color: #EBE6DE;
}

/* Card 2 - Trauma Aware */
.card-2 {
  background-color: #DFD9CE;
}

/* Card 3 - Trauma Informed */
.card-3 {
  background-color: #C4CEBE;
}

/* Card 4 - Trauma Responsive (dark) */
.card-4 {
  background-color: #507560;
}

.card-4 h3 {
  color: #ffffff;
}

.card-4 p {
  color: #d4e6dc;
}

/* Arrows between cards */
.arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 6px;
}

.arrow {
  color: #c8935a;
  font-size: 22px;
  line-height: 1;
  font-style: normal;
}

.the-knowing h3 {
  color: #d39f4e;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 30px;
  font-family: 'Geist';
}

/* The Knowing Doing Page end */



#need-a-therapist1 {
  background-color: #fbfaf8;
  padding: 100px 0;
  font-family: 'Manrope', sans-serif;
  color: #333;
}

#need-a-therapist1 .info-boxes-row {
  box-shadow: none;
}

#need-a-therapist1 .info-box {
  padding: 50px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#need-a-therapist1 .left-box {
  background-color: #fff8f7;
  border-left: 4px solid #cb5953;
}

#need-a-therapist1 .right-box {
  background-color: #f4f9f9;
  border-left: 4px solid #5d8785;
}

#need-a-therapist1 .info-box h3 {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 30px;
}

#need-a-therapist1 .left-box h3 {
  color: #cb5953;
}

#need-a-therapist1 .right-box h3 {
  color: #5d8785;
}

#need-a-therapist1 .info-box ul {
  list-style: none;
  padding-left: 12px;
  margin: 0;
  flex-grow: 1;
}

#need-a-therapist1 .info-box ul li {
  position: relative;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

#need-a-therapist1 .info-box ul li::before {
  content: '';
  position: absolute;
  left: -14px;
  color: #999;
  font-size: 14px;
}

#need-a-therapist1 .box-divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin: 30px 0 20px 0;
}

#need-a-therapist1 .disclaimer {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: #7a8c8c;
  line-height: 1.5;
  margin-bottom: 0;
}

#need-a-therapist1 .middle-text-wrapper {
  margin-top: 80px;
  padding: 50px 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  text-align: center;
}

#need-a-therapist1 .middle-text {
  font-family: 'Lora', serif;
  font-size: 19px;
  color: #333;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
}

#need-a-therapist1 .bottom-nav-row {
  margin-top: 70px;
}

#need-a-therapist1 .bottom-content {
  display: inline-block;
  text-align: left;
}

#need-a-therapist1 .continue-label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

#need-a-therapist1 .continue-label .line {
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: #dca843;
}

#need-a-therapist1 .continue-label .text {
  font-size: 11px;
  font-weight: 800;
  color: #dca843;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 10px;
}

#need-a-therapist1 .nav-btn {
  display: inline-block;
  background-color: #fdfdfc;
  border: 1px solid #e8e8e8;
  padding: 15px 30px;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 15px;
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

#need-a-therapist1 .nav-btn:hover {
  background-color: #f7f7f7;
  border-color: #dcdcdc;
  color: #000;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.therapiy-looks1 {
  background-color: #fcfbf9;
  padding: 100px 0;
  color: #1a222e;
}

.therapiy-looks1 .custom-container {
  max-width: 1040px;
}

.therapiy-looks1 .info-card {
  padding: 35px 45px;
  display: flex;
  flex-direction: column;
}

.therapiy-looks1 .card-teal {
  background-color: #f3f7f8;
  border-left: 4px solid #497d86;
}

.therapiy-looks1 .card-yellow {
  background-color: #f8f8f6;
  border-left: 4px solid #dda74f;
}

.therapiy-looks1 .card-red {
  background-color: #fcf4f5;
  border-left: 4px solid #c95555;
}

.therapiy-looks1 .card-heading {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 25px;
}

.therapiy-looks1 .text-teal {
  color: #497d86;
}

.therapiy-looks1 .text-dark {
  color: #1e2637;
}

.therapiy-looks1 .text-red {
  color: #c95555;
}

.therapiy-looks1 .card-sub-bold {
  color: #2a333d;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 15px;
}

.therapiy-looks1 .card-sub-italic {
  color: #828a93;
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 0;
}

.therapiy-looks1 .card-text.text-muted {
  color: #767d84 !important;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 400;
}

.therapiy-looks1 .custom-row-mid {
  margin-top: 40px;
}

.therapiy-looks1 .bottom-section {
  margin-top: 75px;
}

.therapiy-looks1 .bottom-content {
  display: inline-block;
  text-align: left;
}

.therapiy-looks1 .continue-reading-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  margin-left: -25px;
}

.therapiy-looks1 .line-left,
.therapiy-looks1 .line-right {
  display: inline-block;
  width: 15px;
  height: 1.5px;
  background-color: #dda74f;
}

.therapiy-looks1 .continue-text {
  color: #dda74f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin: 0 10px;
  text-transform: uppercase;
}

.therapiy-looks1 .action-buttons-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.therapiy-looks1 .action-button {
  background-color: #f6f6f4;
  border: 1px solid #e9e9e5;
  color: #1e2637;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.therapiy-looks1 .action-button:hover {
  background-color: #e9e9e5;
  color: #1e2637;
  text-decoration: none;
}



.therapy-out-reach {
  background-color: #FDFCF8;
  padding: 80px 0;
  color: #333;
}

.therapy-out-reach-card {
  padding: 35px 40px;
  margin-bottom: 35px;
}

.therapy-out-reach-card.teal-card {
  background-color: #F4F8F8;
  border-left: 3px solid #4E878C;
}

.therapy-out-reach-card.red-card {
  background-color: #FDF5F5;
  border-left: 3px solid #C6514D;
}

.therapy-out-reach .card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}

.therapy-out-reach-card.teal-card .card-title {
  color: #4E878C;
}

.therapy-out-reach-card.red-card .card-title {
  color: #C6514D;
}

.therapy-out-reach .card-text {
  font-size: 1.95rem;
  line-height: 1.6;
  /* margin-bottom: 15px; */
}

.therapy-out-reach .text-dark-bold {
  font-weight: 700;
  color: #111;
}

.therapy-out-reach .text-light-italic {
  font-style: italic;
  color: #666;
  margin-bottom: 0;
  font-size: 1.125rem;
}

.therapy-out-reach .text-normal {
  color: #444;
  margin-bottom: 25px;
}

.therapy-out-reach .inner-quote {
  background-color: #FFFFFF;
  padding: 20px 25px;
  border-left: 1px solid #333;
}

.therapy-out-reach .inner-quote-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #111;
  font-weight: 700;
  margin: 0;
}

.therapy-out-reach .text-highlight {
  color: #C6514D;
}

.therapy-out-reach-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F4F8F8;
  border: 1px solid #4E878C;
  padding: 18px 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.therapy-out-reach-btn .btn-text {
  color: #4E878C;
  font-weight: 600;
  font-size: 1rem;
}

.therapy-out-reach-btn:hover {
  background-color: #e8f0f0;
  text-decoration: none;
}

.the-self-guide1 {
  background-color: #fbfaf7;
  padding: 80px 0;

}

.the-self-guide1 .content-block {
  padding: 35px 40px;
  border-left-style: solid;
  border-left-width: 3px;
  margin-bottom: 45px;
}

/* Top Block Styling */
.the-self-guide1 .block-workbook {
  background-color: #f3f7f8;
  border-left-color: #438180;
}

.the-self-guide1 .block-workbook .block-title {
  color: #2b5655;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.the-self-guide1 .block-workbook .block-subtitle {
  color: #899392;
  font-size: 1rem;
  margin-bottom: 18px;
  font-family: 'Lora', serif;
  font-style: italic;
}

.the-self-guide1 .block-workbook .block-text {
  color: #3b4242;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Bottom Block Styling */
.the-self-guide1 .block-plainly {
  background-color: #ffffff;
  border-left-color: #de9f3c;
}

.the-self-guide1 .block-plainly .plainly-title {
  color: #a43a31;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.the-self-guide1 .block-plainly .block-text {
  color: #818585;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Continue Section */
.the-self-guide1 .continue-section {
  margin-top: 60px;
}

.the-self-guide1 .continue-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #9fa3a2;
  margin-bottom: 15px;
  font-weight: 700;
}

.the-self-guide1 .continue-link {
  color: #2b5655;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.the-self-guide1 .continue-link:hover {
  color: #2b5655;
  opacity: 0.7;
  text-decoration: none;
}

.meaning-and-belonging-2 {
  background-color: #f9f8f4;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.meaning-and-belonging-2 .mb-wrapper {
  margin: 0 auto;
  width: 100%;
}

.meaning-and-belonging-2 .mb-content-box {
  background-color: #ffffff;
  border-left: 4px solid #dcb439;
  padding: 50px 55px 50px 45px;
  margin-bottom: 35px;
}

.meaning-and-belonging-2 .mb-para {
  font-size: 1.5rem;
  line-height: 1.65;
  color: #444444;
  margin-bottom: 22px;
  letter-spacing: 0.2px;
}

.meaning-and-belonging-2 .mb-quote {
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: #111111;
  line-height: 1.45;
  margin-top: 32px;
  margin-bottom: 32px;
  letter-spacing: -0.1px;
}

.meaning-and-belonging-2 .mb-red-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #c43224;
  margin-bottom: 0;
  letter-spacing: 0.2px;
}

.meaning-and-belonging-2 .mb-citation {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-style: italic;
  color: #777777;
  text-align: center;
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

.voice-sec1 {
  background-color: #fbfaf6;
  padding: 90px 0;
}

.voice-sec1 h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.voice-sec1 p {
  font-size: 1.125rem;
  color: #000;
  line-height: 1.65;
  margin-bottom: 0;
  font-weight: 400;
}

.voice-sec1-intro {
  padding-bottom: 45px;
  border-bottom: 1px solid #ebe9e4;
}

.voice-sec1-item {
  padding: 38px 0;
  border-bottom: 1px solid #ebe9e4;
}

.voice-sec1-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.voice-sec1-item h3 {

  font-size: 21px;

  font-weight: 700;

  color: #2a2a2a;

  margin-bottom: 14px;
}


.for-the-people1 {
  background-color: #fbf9f6;
  padding: 80px 0;
}

.for-the-people1 .info-card {
  padding: 50px 55px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.for-the-people1 .card-helps {
  background-color: #eff4f6;
}

.for-the-people1 .card-avoid {
  background-color: #f5f0ef;
}

.for-the-people1 .main-title {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 20px;
  color: #212529;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.for-the-people1 .title-divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin: 0 0 32px 0;
}

.for-the-people1 .info-item {
  margin-bottom: 28px;
}

.for-the-people1 .info-item:last-child {
  margin-bottom: 0;
}

.for-the-people1 .item-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 14px;
  color: #212529;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.for-the-people1 .item-text {
  font-size: 13px;
  line-height: 1.6;
  color: #5c6262;
  margin: 0;
  font-weight: 400;
}

.for-the-people1 .message-box-wrapper {
  margin-top: 30px;
}

.for-the-people1 .message-box {
  background-color: #ffffff;
  border: 1px solid #efeae6;
  padding: 22px 20px;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
}

.for-the-people1 .survivors-text {
  color: #c75146;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 15px;
}

.for-the-people1 .message-body {
  font-family: 'Merriweather', serif;
  font-style: italic;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 400;
}

.what-flourishing {
  background-color: #FAF8F5;
  color: #333333;
  padding: 70px 0;
}

.what-flourishing .intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 50px;
  font-weight: 500;
}

.what-flourishing .flourish-card-wrapper {
  margin-bottom: 40px;
}

.what-flourishing .flourish-card {
  padding: 35px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.what-flourishing .card-blue {
  background-color: #F1F6F8;
}

.what-flourishing .card-pink {
  background-color: #F9F1EF;
}

.what-flourishing .card-purple {
  background-color: #EEF1FB;
}

.what-flourishing .card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 25px;
}

.what-flourishing .card-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin: 0 0 25px 0;
  width: 100%;
}

.what-flourishing .card-body-text {
  font-size: 17px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 0;
  font-weight: 400;
}

.what-flourishing .flourish-quote-box {
  background-color: #FFFFFF;
  border: 1px solid #EAE0CB;
  padding: 25px 30px;
  text-align: left;
  margin-bottom: 20px;
}

.what-flourishing .quote-text {

  font-size: 15px;
  color: #222222;
  margin-bottom: 0;
  line-height: 1.5;
}

.what-flourishing .quote-text strong {
  font-weight: 700;
}

.what-flourishing .quote-text em {
  font-style: italic;
  color: #555555;
  font-weight: 400;
}

.what-flourishing .caption-text {
  font-size: 15px;
  color: #A0A0A0;
  margin-bottom: 0;
  font-weight: 500;
}

.carrying-something h1 {
  color: #0B1528;
  margin-top: 1rem;
  text-transform: capitalize;
}

.carrying-something.door-2 {
  margin-top: 3rem;
}

.carrying-something.door-2 .btn-leave-inner-1 {
  position: absolute;
  right: 0;
  top: -45px;
}



.a-new-class {
  background-color: #FAF7F2;
  color: #333;
  padding: 100px 0;
}

.a-new-class .cards-row {
  margin-bottom: 90px;
}

.a-new-class .custom-card {
  background-color: #EBE8DD;
  padding: 35px 30px;
  height: 100%;
  border-top: 3px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.a-new-class .card-1 {
  border-top-color: #CB6954;
}

.a-new-class .card-2 {
  border-top-color: #647B69;
}

.a-new-class .card-3 {
  border-top-color: #DFAA5B;
}

.a-new-class .card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.a-new-class .card-1 .card-label {
  color: #CB6954;
}

.a-new-class .card-2 .card-label {
  color: #647B69;
}

.a-new-class .card-3 .card-label {
  color: #DFAA5B;
}

.a-new-class .card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  color: #1A221D;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.a-new-class .card-subtitle {
  font-size: 11px;
  margin-bottom: 25px;
}

.a-new-class .card-1 .card-subtitle {
  color: rgba(203, 105, 84, 0.8);
}

.a-new-class .card-2 .card-subtitle {
  color: rgba(100, 123, 105, 0.8);
}

.a-new-class .card-3 .card-subtitle {
  color: rgba(223, 170, 91, 0.9);
}

.a-new-class .card-text {
  font-size: 13px;
  line-height: 1.65;
  color: #4A4A4A;
  margin: 0;
}

.a-new-class .quote-row {
  margin-bottom: 70px;
}

.a-new-class .custom-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: #5A7363;
  border-left: 3px solid #DB9949;
  padding-left: 25px;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.a-new-class .custom-btn {
  display: inline-flex;
  align-items: center;
  background-color: #5A7363;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.a-new-class .custom-btn:hover {
  background-color: #455A4C;
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-2px);
}

.a-new-class .chevron {
  margin-left: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  top: -1px;
}

.find-responsive {
  background-color: #FBF9F5;
  color: #273130;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow-x: hidden;
}

.find-responsive .section-container {
  max-width: 1140px;
  padding-left: 30px;
  padding-right: 30px;
}

/* Header Section */
.find-responsive .header-row {
  margin-bottom: 45px;
}

.find-responsive .section-overline {
  color: #CB5C42;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.find-responsive .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 32px;
  color: #273130;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.find-responsive .section-subtitle {
  color: #7B8C8A;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 0;
}

/* Cards Section */
.find-responsive .cards-row {
  margin-bottom: 60px;
}

.find-responsive .filter-card {
  background-color: #EFECE3;
  padding: 35px 35px 45px 35px;
  height: 100%;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.find-responsive .filter-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.08);
}

.find-responsive .card-overline {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 15px;
}

.find-responsive .card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: #273130;
  margin-bottom: 12px;
}

.find-responsive .card-text {
  font-size: 13px;
  color: #5F6B6A;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Specific Card Styles */
.find-responsive .card-place {
  border-top: 3px solid #CB5C42;
}

.find-responsive .card-place .card-overline {
  color: #CB5C42;
}

.find-responsive .card-tier {
  border-top: 3px solid #5B8679;
}

.find-responsive .card-tier .card-overline {
  color: #5B8679;
}

.find-responsive .card-pathway {
  border-top: 3px solid #D6AE5D;
}

.find-responsive .card-pathway .card-overline {
  color: #D6AE5D;
}

.find-responsive .card-setting {
  border-top: 3px solid #8399AA;
}

.find-responsive .card-setting .card-overline {
  color: #8399AA;
}

/* Disclaimer Section */
.find-responsive .disclaimer-row {
  margin-bottom: 60px;
}

.find-responsive .disclaimer-box {
  border-left: 2.5px solid #CB5C42;
  padding-left: 20px;
}

.find-responsive .disclaimer-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: #CB5C42;
  margin-bottom: 12px;
}

.find-responsive .disclaimer-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: #5F6B6A;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 95%;
}

/* Action Button */
.find-responsive .action-btn {
  background-color: #5B8679;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 0;
  border: none;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.find-responsive .action-btn:hover,
.find-responsive .action-btn:focus {
  background-color: #4a6d63;
  color: #ffffff;
  outline: none;
  box-shadow: none;
}

.find-responsive .btn-arrow {
  margin-left: 8px;
  font-size: 10px;
}

.join-individual {
  background-color: #fcfcfb;
  padding: 100px 0 80px;
  color: #2d3131;
}

.join-individual .top-block {
  border-left: 2px solid #8e9494;
  padding-left: 20px;
  margin-bottom: 60px;
  margin-left: -22px;
}

.join-individual .top-block h3 {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 18px;
  color: #2d3131;
  margin-bottom: 15px;
  letter-spacing: 0.2px;
}

.join-individual .top-block h4 {
  font-weight: 800;
  font-size: 13px;
  color: #2d3131;
  margin-bottom: 15px;
}

.join-individual .top-block p {
  font-weight: 400;
  font-size: 13px;
  color: #a0a5a3;
  margin-bottom: 0;
  line-height: 1.6;
}

.join-individual .middle-block h2 {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 26px;
  color: #2d3131;
  margin-bottom: 20px;
}

.join-individual .middle-block p {
  font-weight: 400;
  font-size: 13.5px;
  color: #5f6563;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 95%;
}

.join-individual .join-btn {
  background-color: #4a6856;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.join-individual .join-btn:hover {
  background-color: #3b5344;
}

.join-individual .join-btn .arrow-down {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #ffffff;
}

.join-individual .bottom-block {
  border-top: 1px solid #ececec;
  padding-top: 25px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.join-individual .bottom-block .label {
  font-size: 11px;
  color: #8e9494;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.join-individual .bottom-block a {
  font-size: 12.5px;
  color: #ba5c3b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.join-individual .bottom-block a:hover {
  color: #9c4c30;
  text-decoration: underline;
}

#patner-and-supporters {
  background-color: #f9f8f6;
  padding: 80px 0;

  color: #272833;
}

#patner-and-supporters .section-title {

  font-weight: 700;
  font-size: 26px;
  margin-bottom: 18px;
  color: #272833;
}

#patner-and-supporters .intro-text {
  font-size: 12px;
  color: #7e7f82;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 90%;
  font-weight: 400;
}

#patner-and-supporters .structure-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#patner-and-supporters .structure-card {
  background-color: #ffffff;
  border-left: 2px solid #272833;
  padding: 22px 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#patner-and-supporters .structure-card-desc {
  font-size: 11px;
  color: #afafaf;
  font-weight: 400;
  margin: 0;
  width: 100%;
}

#patner-and-supporters .launch-notice {
  background-color: #fdf3f4;
  border: 1px solid #f2ddde;
  padding: 20px 25px;
  margin: 35px 0;
}

#patner-and-supporters .notice-header {
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  color: #a12c2c;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

#patner-and-supporters .notice-header .dot {
  width: 5px;
  height: 5px;
  background-color: #a12c2c;
  border-radius: 50%;
  margin-right: 8px;
}

#patner-and-supporters .notice-body {
  font-size: 11px;
  font-weight: 700;
  color: #a12c2c;
  margin: 0;
}

#patner-and-supporters .footer-links-container {
  border-top: 1px solid #e3e2de;
  padding-top: 25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#patner-and-supporters .footer-links-container>span {
  font-size: 9px;
  font-weight: 700;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 25px;
  margin-bottom: 10px;
}

#patner-and-supporters .footer-links-container a {
  font-size: 11px;
  font-weight: 700;
  color: #cf5938;
  text-decoration: none;
  margin-right: 25px;
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
}

#patner-and-supporters .footer-links-container a:hover {
  opacity: 0.7;
}


.join-organization {

  background-color: #FAF9F5;
  padding: 100px 0 120px;
  color: #4A4A4A;
}

.join-organization .custom-container {
  max-width: 980px;
}

.join-organization h1,
.join-organization h2,
.join-organization h3,
.join-organization h4,
.join-organization h5,
.join-organization h6 {

  color: #2D3A4B;
}

.join-organization .header-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding-bottom: 35px;
  margin-bottom: 0;
}

.join-organization .sub-label {
  color: #C15C3D;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 14px;
}

.join-organization .main-title {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.join-organization .intro-desc {
  font-size: 15px;
  color: #888888;
  max-width: 820px;
  line-height: 1.65;
  margin-bottom: 0;
}

.join-organization .step-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 40px 0;
}

.join-organization .step-item:last-of-type {
  border-bottom: none;
  padding-bottom: 70px;
}

.join-organization .step-label {
  color: #C15C3D;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.join-organization .step-title {
  font-size: 21px;
  font-weight: 700;
  margin: 0;
}

.join-organization .step-text {
  font-size: 15px;
  color: #7A7A7A;
  line-height: 1.6;
  margin: 0;
  padding-top: 5px;
}


.join-organization .cta-section {
  padding-top: 10px;
}

.join-organization .cta-content {
  border-left: 3px solid #B8B8B8;
  padding-left: 35px;
  margin-top: 15px;
}

.join-organization .cta-title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 18px;
}

.join-organization .cta-text {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #888888;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 800px;
}

.join-organization .btn-enroll {
  font-family: 'Manrope', sans-serif;
  background-color: #53745F;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 28px;
  border: none;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.join-organization .btn-enroll:hover {
  background-color: #425D4C;
  color: #FFFFFF;
  text-decoration: none;
}

.join-organization .btn-enroll i {
  margin-left: 12px;
  font-size: 10px;
}


/* need page  */

#need-help1 {
  background-color: #faf9f6;
  padding: 80px 0;
  min-height: 300px;
  display: flex;
  align-items: center;
}

#need-help1 .alert-box {
  background-color: #f3e5e5;
  border: 1px solid #b73d3d;
  padding: 28px 32px;
  border-radius: 0;
  margin-bottom: 2rem;
}

#need-help1 .alert-heading {
  color: #D32F2F;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.1px;
  text-transform: capitalize;
}

#need-help1 .alert-text {
  color: #4a4a4a;
  font-size: 20px;
  line-height: 1.6;
  max-width: 650px;
}

#need-help1 .quick-exit-btn {
  background-color: #c43232;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 3px;
  border: none;
  box-shadow: none;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

#need-help1 .quick-exit-btn:hover {
  background-color: #a32727;
  color: #ffffff;
}

#need-help1 .quick-exit-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(196, 50, 50, 0.25);
}

#need-help1 .info-text {
  color: #323437;
  font-size: 20px;
  width: 80%;
  margin: auto;
  text-align: center;
}

#need-help1 .info-icon {
  stroke: #a0a0a0;
}


.need-help2 {
  background-color: #F7F5F0;
  padding: 80px 0;
}

.need-help2-header {
  margin-bottom: 60px
}

.need-help2-label {
  display: inline-block;
  background-color: #D6A828;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px
}

.need-help2-item {
  padding: 28px 0;
  border-bottom: 1px solid #E8E7E3
}

.need-help2-number {
  font-size: 23px;
  font-weight: 800;
  color: #1a1e28;
  margin-bottom: 6px
}

.need-help2-subtitle {
  font-size: 19px;
  font-weight: 600;
  color: #D4A017;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.need-help2-desc {
  font-size: 20px;
  line-height: 1.6;
  color: #1A2332;
  margin: 0;
  padding-right: 20px
}

.need-help2-btn {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: #1a1e28;
  background-color: transparent;
  border: 1px solid #1a1e28;
  border-radius: 2px;
  padding: 8px 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap
}

.need-help2-btn:hover {
  background-color: #1a1e28;
  color: #fff
}



.need-help3-section {
  background-color: #FAF9F5;
  padding: 5rem 22rem;
}

.need-help3-subtitle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.need-help3-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #CFA632;
  margin-right: 12px;
}

.need-help3-title {
  font-size: 48px;
  color: #0B1528;
  font-weight: 500;
}

.need-help3-card {
  background-color: #F7F5F0;
  border: 1px solid #EBE9E2;
  padding: 1.4rem;
  height: 100%;
  transition: all 0.3s ease;
}

.need-help3-card-category {
  font-size: 17px;
  font-weight: bold;
  color: #CFA632;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.need-help3-card-phone {
  font-size: 30px;
  font-weight: 500;
  color: #1E2532;
  margin-bottom: 14px;
}

.need-help3-card-desc {
  font-size: 17px;
  font-weight: 400;
  color: #1A2332;
  line-height: 1.6;
  margin-bottom: 0;
  width: 92%;
}

.need-help4 {
  background-color: #0B101D;
  padding: 100px 0;
  color: #ffffff;
}

.need-help4-desc {
  color: #dadada;
  font-size: 20px;
  line-height: 1.8;
  margin: 0 auto 60px auto;
  font-weight: 400;
  width: 75%;
}

.need-help4-box {
  background-color: #131929;
  padding: 45px 40px;
  height: 100%;
  border-radius: 2px;
  text-align: left;
}

.need-help4-box-title {
  color: var(--primary);
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.need-help4-box-desc {
  color: #dadada;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 0;
  width: 76%;
}

.need-help5 {
  background-color: #FAF9F6;
  padding: 90px 21rem;
  color: #4A4E57;
}

.need-help5 .pre-heading {
  font-size: 10px;
  font-weight: 700;
  color: #D4A353;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.need-help5 .pre-heading .line {
  width: 30px;
  height: 1px;
  background-color: #D4A353;
  margin-right: 10px;
}

.need-help5 .section-title {
  font-size: 56px;
  font-weight: 500;
  color: #0B1528;
  letter-spacing: -0.5px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.need-help5 .section-subtitle {
  font-size: 20px;
  line-height: 1.8;
  color: #1A2332;
  width: 90%;
  margin: 0 auto;
  font-weight: 400;
  font-style: unset;
  font-family: 'Geist';
}

.need-help5 .content-row {
  margin-top: 70px;
}

.need-help5 .column-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: #1A1C24;
  margin: 0 0 17px;
  text-transform: capitalize;
}

.need-help5 .left-list li,
.need-help5 .q-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.need-help5 .left-list li:last-child,
.need-help5 .q-list li:last-child {
  margin-bottom: 0;
}

.need-help5 .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: #F1E5D1;
  border-radius: 50%;
  margin-right: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.need-help5 .check-icon::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid #D4A353;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.need-help5 .left-text,
.need-help5 .q-text {
  font-size: 18px;
  color: #1A2332;
  line-height: 1.7;
  margin: 0;
}

.need-help5 .info-card {
  background-color: #F5F4EF;
  padding: 35px 32px;
  border-radius: 4px;
}

.need-help5 .q-label {
  color: #D4A353;
  font-weight: 700;
  margin-right: 18px;
  font-size: 19px;
  line-height: 1.7;
  flex-shrink: 0;
}

#need-help6 {
  background-color: #F7F5F0;
  padding: 100px 21rem;
}

#need-help6 .section-header {
  margin-bottom: 60px;
}

#need-help6 .title {

  font-size: 56px;

  color: #0B1528;

  margin-bottom: 25px;

  font-weight: 500;
}

#need-help6 .description {
  font-size: 20px;
  color: #4B5563;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
}

#need-help6 .info-card {
  padding: 25px 33px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: flex-start;
}

#need-help6 .light-card {
  background-color: #FFFFFF;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.015);
}

#need-help6 .dark-card {
  background-color: #121727;
}

#need-help6 .light-card h3 {

  font-size: 32px;

  color: #1F2937;

  margin-bottom: 35px;

  font-weight: 600;
}

#need-help6 .dark-card h3 {

  font-size: 32px;

  color: #D69E3A;

  margin-bottom: 25px;

  font-weight: 500;

  text-transform: capitalize;
}

#need-help6 .dark-subtext {
  font-size: 18.5px;
  color: #dadada;
  line-height: 1.7;
  margin-bottom: 30px;
}

#need-help6 .custom-list {
  list-style: none;
  padding: 0;
  margin: 0 0;
}

#need-help6 .custom-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 22px;
  font-size: 18.5px;
  line-height: 1.6;
}

#need-help6 .custom-list li:last-child {
  margin-bottom: 0;
}

#need-help6 .light-list li {
  color: #374151;
}

#need-help6 .dark-list li {
  color: #dadada;
}

#need-help6 .custom-list li svg {
  position: absolute;
  left: 0;
  top: 23px;
}

#need-help6 .footnote {
  font-size: 15.5px;
  color: #374151;
  margin-top: 45px;
  line-height: 1.6;
}

#need-help6 .btn-finder {
  background-color: #D69E3A;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 45px;
  align-self: flex-start;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

#need-help6 .btn-finder:hover {
  background-color: #C59132;
  color: #111827;
  text-decoration: none;
}

#need-help7 {
  background-color: #FAF9F6;
  padding: 100px 0;

}

#need-help7 .need-help7-subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

#need-help7 .need-help7-line {
  width: 30px;
  height: 1px;
  background-color: #C99933;
  margin-right: 12px;
}

#need-help7 .need-help7-desc {
  font-size: 20px;
  color: #4A4F55;
  line-height: 1.6;
  margin: 0 auto 60px auto;
}

#need-help7 .need-help7-card {
  background-color: #F4F3EE;
  padding: 40px 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#need-help7 .need-help7-card-num {
  font-size: 25px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

#need-help7 .need-help7-card-title {
  font-size: 30px;
  font-weight: 600;
  color: #161B22;
  margin-bottom: 15px;
  line-height: 1.3;
}

#need-help7 .need-help7-card-text {
  font-size: 18px;
  color: #4A4F55;
  line-height: 1.6;
  margin-bottom: 0;
}

#need-help7 .row.need-help7-cards-row {
  margin-left: -10px;
  margin-right: -10px;
}

#need-help7 .row.need-help7-cards-row>[class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

#need-help8 {
  background-color: #0b111e;
  padding: 100px 0;

  color: #ffffff;
}

#need-help8 .top-label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

#need-help8 .top-line {
  width: 30px;
  height: 1px;
  background-color: #c29938;
  margin-right: 12px;
}

#need-help8 .section-title {

  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

#need-help8 .section-desc {
  color: #dadada;
  font-size: 20px;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

#need-help8 .cards-row {
  margin-top: 3.5rem;
}

#need-help8 .ethical-card {
  background-color: #131b2e;
  border-radius: 4px;
  padding: 35px 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#need-help8 .ethical-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#need-help8 .card-title {
  color: #c29938 !important;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.1;
}

#need-help8 .card-text {
  color: #dadada;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}

.need-help9 {
  background-color: #FAF8F5;
  padding: 110px 0;
}

.need-help9-label-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.need-help9-line {
  width: 25px;
  height: 1px;
  background-color: #C19B5E;
  margin-right: 12px;
}

.need-help9-content {
  max-width: 980px;
  margin: 0 auto;
}

.need-help9-text-block {
  padding-right: 50px;
}

.need-help9-subtitle {
  font-size: 30px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 22px;
  text-transform: capitalize;
}

.need-help9-desc {
  font-size: 20px;
  line-height: 1.9;
  color: #555555;
  font-weight: 400;
  margin-bottom: 0;
}

.need-help9-table {
  background-color: #F3F2EE;
  padding: 30px 25px;
  border-radius: 2px;
}

.need-help9-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 26px;
}

.need-help9-row:last-child {
  margin-bottom: 0;
}

.need-help9-row-label {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A1A;
  flex: 0 0 auto;
}

.need-help9-row-value {
  font-size: 16px;
  font-weight: 500;
  color: #444444;
  text-align: right;
  flex: 1 1 auto;
  padding-left: 20px;
}

#need-help10 {
  background-color: #F7F5F0;
  padding: 45px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#need-help10 .title {
  font-size: 42px;
  font-weight: 500;
  color: #0B1528;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

#need-help10 .description {
  font-size: 20px;
  line-height: 1.6;
  color: #1A2332;
  margin-bottom: 0;
  font-weight: 400;
}

/* need page  */





.aboutuact-sec {
  background-color: #fbfaf8;
  padding: 80px 0;
  color: #1a1a1a;
}

.aboutuact-sec .info-box {
  position: relative;
  padding: 45px 50px 45px 45px;
  margin-bottom: 35px;
}

.aboutuact-sec .info-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.aboutuact-sec .box-teal {
  background-color: #ebf2f2;
}

.aboutuact-sec .box-teal::before {
  background-color: #408a86;
}

.aboutuact-sec .box-teal .section-label {
  color: var(--primary);
}

.aboutuact-sec .box-teal h3 {
  color: #1F837A;
}

.aboutuact-sec .box-cream {
  background-color: #f9f7f2;
  margin-bottom: 60px;
}

.aboutuact-sec .box-cream::before {
  background-color: #d69f4d;
}

.aboutuact-sec .box-cream .section-label {
  color: #d69f4d;
}

.aboutuact-sec .box-cream h3 {
  color: #1a1a1a;
}

.aboutuact-sec .section-label {
  font-size: 2.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 25px;
}

.aboutuact-sec h3 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.aboutuact-sec p {
  font-size: 1.4rem;
  color: #333333;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.aboutuact-sec .facts-section {
  padding: 10px 50px 20px 45px;
}

.aboutuact-sec .facts-section .section-label {
  color: #666666;
  margin-bottom: 15px;
}

.aboutuact-sec .facts-section h2 {
  font-size: 2.7rem;
  color: #0B1528;
  font-weight: 600;
  margin-bottom: 40px;
}

.aboutuact-sec .fact-item {
  display: flex;
  padding: 22px 0;
  border-bottom: 1px solid #eeeeee;
}

.aboutuact-sec .fact-item:first-of-type {
  border-top: none;
}

.aboutuact-sec .fact-item .fact-name {
  width: 30%;
  font-size: 1.4rem;
  font-weight: bold;
  color: #444444;
}

.aboutuact-sec .fact-item .fact-value {
  width: 70%;
  font-size: 20px;
  font-weight: 400;
  color: #1a1a1a;
}

.about-founder-sec {
  background-color: #FAF9F6;
  padding: 100px 0;

}

.about-founder-sec .section-title {

  font-size: 3.3rem;

  font-weight: bold;

  color: #1A1A1A;

  margin-bottom: 40px;
}

.about-founder-sec .timeline-list {
  border-top: 1px solid #EBE7DF;
}

.about-founder-sec .timeline-item {
  display: flex;
  padding: 22px 0;
  border-bottom: 1px solid #EBE7DF;
}

.about-founder-sec .timeline-title {
  width: 35%;
  color: #E2982B;
  font-weight: bold;
  font-size: 1.425rem;
  padding-right: 20px;
}

.about-founder-sec .timeline-desc {
  width: 65%;
  color: #333;
  font-size: 20px;
  line-height: 1.6;
}

.about-founder-sec .founder-meta {
  /* font-size: 9px; */
  /* text-transform: uppercase; */
  /* letter-spacing: 1px; */
  /* color: #666; */
  font-weight: 600;
}

.about-founder-sec .quote-wrapper {
  margin-top: 80px;
}

.about-founder-sec .quote-box {
  background-color: #F7F3EA;
  border-left: 4px solid #C19B4C;
  padding: 45px 50px;
}

.about-founder-sec .quote-text {

  font-size: 2.3rem;

  font-weight: 600;

  color: #222;

  margin-bottom: 15px;

  line-height: 1.4;

  font-style: inherit;
}

.about-founder-sec .quote-author {
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #444;
  margin: 0;
}


.about-speaking-sec {
  background-color: #FAF8F5;
  padding: 90px 0;
  color: #19202C;
  overflow: hidden;
}

.about-speaking-sec .section-header {
  margin-bottom: 35px;
}

.about-speaking-sec .sub-heading {
  font-size: 10px;
  font-weight: 800;
  color: #D59B40;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.about-speaking-sec .sub-heading .line {
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: #D59B40;
  margin-right: 12px;
}

.about-speaking-sec .main-heading {
  font-size: 50px;
  font-weight: bold;
  color: #19202C;
  margin: 0;
  letter-spacing: -0.3px;
}

.about-speaking-sec .speak-card {
  background-color: #ffffff;
  padding: 30px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015), 0 10px 40px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.02);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-speaking-sec .speak-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03), 0 15px 50px rgba(0, 0, 0, 0.04);
}

.about-speaking-sec .card-top {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.about-speaking-sec .card-icon {
  color: #D59B40;
  font-size: 14px;
  margin-right: 10px;
}

.about-speaking-sec .card-title {
  font-size: 1.825rem !important;
  font-weight: 800;
  color: #19202C;
  margin: 0;
}

.about-speaking-sec .card-desc {
  font-family: 'Geist';
  font-size: 20px;
  color: #6A717D;
  line-height: 1.6;
  margin: 0;
}

.about-speaking-sec .expectation-row {
  margin-top: 80px;
}

.about-speaking-sec .expectation-text {
  max-width: 65%;
  margin: auto;
}

.about-speaking-sec .expectation-text p {
  font-family: 'Geist';
  font-size: 20px;
  color: #374151;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

.about-speaking-sec .cta-row {
  margin-top: 80px;
}

.about-speaking-sec .cta-wrapper {
  background-color: #FDF6EC;
  border-left: 4px solid #D59B40;
  padding: 45px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 2px;
}

.about-speaking-sec .cta-sub-heading {

  font-size: 25px;

  font-weight: 800;

  color: #6A717D;

  margin-bottom: 15px;

  text-transform: uppercase;

  letter-spacing: 1.5px;
}

.about-speaking-sec .cta-heading {

  font-size: 28px;

  font-weight: 700;

  color: #19202C;

  margin: 0;

  text-transform: capitalize;
}

.about-speaking-sec .cta-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px !important;
  height: 40px !important;
  background-color: #19202C;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 30px;
  padding: 0;
}

.about-speaking-sec .cta-btn:hover {
  background-color: #D59B40;
  color: #ffffff;
  text-decoration: none;
}



.about-news-sec {
  background-color: #FBF9F6;
  padding: 80px 0;

  color: #111;
}

.about-news-sec .how-it-works-header {
  margin-bottom: 48px;
}

.about-news-sec .how-it-works-header h2 {
  font-family: "Geist";
  font-size: 31px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  text-transform: capitalize;
}

.about-news-sec .how-it-works-header p {
  font-size: 20px;
  color: #6B7280;
  line-height: 1.6;
  max-width: 900px;
  margin: 0;
}

.about-news-sec .news-list {
  border-top: 1px solid #EAE6DF;
}

.about-news-sec .news-item {
  border-bottom: 1px solid #EAE6DF;
  padding: 40px 0;
}

.about-news-sec .news-meta {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  letter-spacing: 0.2px;
  color: var(--bg-dark);
}

.about-news-sec .meta-num {
  color: #D59834;
  font-weight: 800;
}

.about-news-sec .meta-dash {
  color: #9CA3AF;
  margin: 0 6px;
}

.about-news-sec .meta-date {
  color: var(--primary);
}

.about-news-sec .publisher-name {
  font-size: 27px;
  font-weight: 700;
  color: #212529;
  margin: 0;
  letter-spacing: -0.2px;
}

.about-news-sec .article-title {
  font-size: 27px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 8px;
  line-height: 1.5;
  margin-top: -2px;
}

.about-news-sec .article-excerpt {
  font-size: 20px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

.about-news-sec .important-notice {
  background-color: #F0F5F9;
  border: 1px solid #E2EBF2;
  border-radius: 6px;
  padding: 24px 32px;
  margin-top: 60px;
}

.about-news-sec .notice-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #4A6C82;
}

.about-news-sec .notice-header svg {
  margin-right: 8px;
}

.about-news-sec .notice-header span {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-news-sec .notice-body {
  font-size: 18px;
  color: #4A6C82;
  line-height: 1.6;
  margin: 0;
}



.about-book {
  background-color: #FAF9F5;
  padding: 80px 0;
  color: #202428;
}

.about-book .about-book-item {
  border-top: 1px solid #EBECE8;
  padding: 35px 0;
  align-items: end;
}

.about-book .about-book-item.last-item {
  border-bottom: 1px solid #EBECE8;
}

.about-book .meta {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.about-book .meta .num {
  color: #CFA055;
  margin-right: 12px;
}

.about-book .meta .tag {
  background-color: #EDEDE8;
  color: #50555A;
  padding: 3px 7px;
  border-radius: 3px;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.about-book .title {

  font-size: 2.3rem;

  font-weight: bold;

  color: #202428;

  margin-bottom: 0;

  letter-spacing: -0.2px;
}

.about-book .desc {
  font-size: 20px;
  line-height: 1.65;
  color: #656B73;
  margin-bottom: 0;
  font-weight: 400;
}

.notice-box {
  background-color: #EAF2F8;
  border-radius: 4px;
  padding: 24px 30px;
  margin-top: 50px;
}

.about-book .notice-box .notice-header {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #456885;
  margin-bottom: 8px;
}

.about-book .notice-box .notice-header svg {
  width: 13px;
  height: 13px;
  margin-right: 8px;
  fill: currentColor;
}

.notice-box .notice-body {
  font-size: 21px;
  color: #456885;
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 400;
}


.about-blog {
  background-color: #FAF8F5;
  color: #1a202c;
}

.about-blog .section-title {
  font-size: 50px;
  font-weight: bold;
  color: #2d3748;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.about-blog .section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background-color: #f6ad55;
}

.about-blog .content-item {
  padding-right: 20px;
}

.about-blog .item-title {
  font-size: 35px;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}

.about-blog .dot {
  width: 6px;
  height: 6px;
  background-color: #f6ad55;
  display: inline-block;
}

.about-blog .item-desc {
  font-size: 20px;
  font-weight: 400;
  color: #718096;
  line-height: 1.5;
  margin-bottom: 0;
  padding-left: 14px;
}

.about-blog .cadence-desc {
  font-size: 20px;
  font-weight: 400;
  color: #718096;
  line-height: 1.5;
  max-width: 800px;
}



#about-merchandise {
  background-color: #fbf9f5;
  padding: 80px 0;
  color: #1a202c;
}

#about-merchandise h2 {
  font-size: 45px;
  font-weight: bold;
  color: #19202a;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
  text-transform: capitalize;
}

#about-merchandise .title-line {
  width: 38px;
  height: 3px;
  background-color: #dfcca0;
  margin-bottom: 35px;
}

#about-merchandise .intro-text {
  font-size: 1.425rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 55px;
  font-weight: 400;
}

#about-merchandise .merch-list {
  border-top: 1px solid #efeae0;
}

#about-merchandise .merch-item {
  border-bottom: 1px solid #efeae0;
  padding: 35px 0;
  margin: 0;
}

#about-merchandise .merch-item>div {
  padding-left: 0;
}

#about-merchandise .merch-title {
  font-size: 27px;
  font-weight: 800;
  color: #19202a;
  font-family: 'Geist';
  text-transform: capitalize;
}

#about-merchandise .merch-desc {
  font-size: 1.4rem;
  color: #6b7280;
  line-height: 1.6;
  font-weight: 400;
}



.contact-about {
  background-color: #fbf8f5;
  padding: 100px 0;
  display: flex;
  align-items: center;
}

.contact-about-title {
  color: #1a1f2c;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
  text-transform: capitalize;
}

.contact-about-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 3px;
  background-color: #dea13e;
}

.contact-about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 45px 0;
}

.contact-about-list li {
  border-top: 1px solid #f2efe9;
  padding: 24px 0;
}

.contact-about-list li:last-child {
  border-bottom: 1px solid #f2efe9;
}

.contact-about-label {
  color: #E2982B;
  font-size: 24px;
  font-weight: bold;
  font-family: 'Geist';
  text-transform: capitalize;
}

.contact-about-desc {
  color: #526071;
  font-size: 20px;
  font-weight: 400;
}

.contact-about-alert {
  border: 1px solid #FF5F57;
  background-color: #FFF5F5;
  padding: 16px 20px;
  color: #d35b5b;
  font-size: 1.425rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  border-radius: 4px;
}

.contact-about-alert-dot {
  width: 6px;
  height: 6px;
  background-color: #d35b5b;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
}

.section-somebdy.bg-beige {
  padding: 4rem 0;
}

.content-wrapper p {
  width: 62%;
  margin: 1rem auto;
}

.continue {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #4E5D6C;
  font-weight: 700;
}

.read-founding a:hover {
  color: var(--primary) !important;
}

.michael figcaption {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 1rem;
}

.global {
  padding: 1rem 2rem;
  border: 1px solid #dadada;
  border-radius: 13px;
  width: fit-content;
  margin: auto;
}

.global h5 {
  color: #dadada;
  font-size: 1.6rem;
}

.global h5 a {
  color: var(--primary);
}



/* ============================================================
   ABOUT ARCHITECTURE SECTION
   ============================================================ */

.about-architecture-section {
  padding: 4rem 0;
  background: #faf8f5;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--secondary);
  font-weight: 600;
  opacity: 0.7;
}

/* ============================================================
   DROPDOWN / ABOUT CARD
   ============================================================ */

.card-about {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 152, 43, 0.08);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(226, 152, 43, 0.15);
}

.about-dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem 1.5rem;
}

.about-dropdown-list li {
  padding: 0.2rem 0;
}

.about-dropdown-list li a {
  color: var(--secondary);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding-left: 0;
}

.about-dropdown-list li a:hover {
  color: var(--primary);
}

.about-dropdown-list li a::before {
  content: "ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
  color: var(--primary);
  font-weight: 700;
  margin-right: 0.4rem;
  opacity: 0;
  transition: opacity 0.2s ease, margin-right 0.2s ease;
}

.about-dropdown-list li a:hover::before {
  opacity: 1;
  margin-right: 0.6rem;
}

/* ============================================================
   OPEN ITEMS TITLE
   ============================================================ */

.open-items-title {
  font-size: 50px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  display: inline-block;
}

/* ============================================================
   OPEN ITEMS CARDS
   ============================================================ */

.open-item-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(226, 152, 43, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.open-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  border-color: rgba(226, 152, 43, 0.15);
}

.open-item-full {
  height: auto;
}

.open-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(226, 152, 43, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.open-item-content {
  flex: 1;
}

.open-item-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.2rem;
  text-transform: capitalize;
}

.open-item-desc {
  font-size: 1.3rem;
  color: #5a5a6a;
  margin-bottom: 0;
  line-height: 1.6;
}

.open-item-desc strong {
  color: var(--primary);
  font-weight: 600;
}

.about-architecture-section .row {
  gap: 1rem 0;
}

section#meaning-and-belonging .intro-text {
  color: #000;
}

section#meaning-and-belonging p.list-desc {
  color: #000;
}

section#meaning-and-belonging h4.list-title {
  margin-bottom: 2rem;
}

section#meaning-and-belonging p.callout-desc {
  color: #000;
  margin-top: 10px;
}


/* ============================================================
   ABOUT DETAIL SECTION
   ============================================================ */

.about-detail {
  padding: 4rem 0;
  background: #faf8f6;
}

.about-detail .col-md-6:first-child {
  position: sticky;
  top: 130px;
}

/* ============================================================
   STICKY IMAGE WRAPPER
   ============================================================ */

.detail-img-wrapper {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-img {
  width: 450px;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 20px;
}

.detail-img-wrapper:hover .detail-img {
  transform: scale(1.02);
}

/* Image Badge */
.img-badge {
  position: absolute;
  bottom: 20px;
  left: 147px;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 16px rgba(226, 152, 43, 0.3);
}

/* ============================================================
   CONTENT
   ============================================================ */

.detail-content {
  padding: 0 0 0 2rem;
}

/* Header */
.content-header {
  margin-bottom: 1.5rem;
}

.content-tag {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(226, 152, 43, 0.08);
  padding: 0.5rem 1.8rem;
  border-radius: 20px;
  margin-bottom: 1.3rem;
  font-family: 'Poppins', sans-serif;
}

.content-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.02em;
}

.content-subtitle {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: 0.2rem;
  font-family: 'Poppins', sans-serif;
}

.content-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin-top: 0.6rem;
  border-radius: 2px;
}

/* Body */
.content-body p {
  font-size: 1.125rem;
  color: #4a4a5a;
  line-height: 1.9;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.content-body strong {
  color: var(--secondary);
  font-weight: 600;
}

.content-body em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}

/* Family Detail */
.family-detail {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(226, 152, 43, 0.06);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  font-size: 1.05rem;
  color: var(--secondary);
  font-weight: 500;
}

.family-detail i {
  color: var(--primary);
  margin-right: 0.6rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1199px) {
  .content-title {
    font-size: 2.8rem;
  }

  .content-body p {
    font-size: 1rem;
  }

  .content-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  .about-detail {
    padding: 3rem 0;
  }

  .detail-content {
    padding: 1.5rem 0 0 0;
  }

  .content-title {
    font-size: 2.2rem;
  }

  .content-body p {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .detail-img-sticky {
    position: relative;
    top: 0;
  }

  .img-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
  }

  .content-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .about-detail {
    padding: 2.5rem 0;
  }

  .detail-img-wrapper {
    border-radius: 16px;
    margin-bottom: 0.5rem;
  }

  .img-badge {
    bottom: 12px;
    left: 12px;
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
  }

  .detail-content {
    padding: 1rem 0 0 0;
  }

  .content-tag {
    font-size: 1rem;
    padding: 0.4rem 1.2rem;
    margin-bottom: 0.8rem;
  }

  .content-title {
    font-size: 1.8rem;
  }

  .content-title::after {
    width: 45px;
    height: 3px;
    margin-top: 0.4rem;
  }

  .content-subtitle {
    font-size: 0.85rem;
  }

  .content-body p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
  }

  .family-detail {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    border-left-width: 3px;
  }
}

@media (max-width: 480px) {
  .about-detail {
    padding: 2rem 0;
  }

  .img-badge {
    bottom: 8px;
    left: 8px;
    font-size: 0.55rem;
    padding: 0.2rem 0.8rem;
    letter-spacing: 0.5px;
  }

  .content-tag {
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    letter-spacing: 1px;
  }

  .content-title {
    font-size: 1.5rem;
  }

  .content-title::after {
    width: 35px;
    height: 3px;
  }

  .content-subtitle {
    font-size: 0.8rem;
  }

  .content-body p {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
  }

  .family-detail {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
  }
}


/* footer section start */
/* ============================================================
   FOOTER SECTION
   ============================================================ */

.uact-global-footer-section {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.uact-footer-inner-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER NAVIGATION GRID
   ============================================================ */

.uact-footer-nav-grid-row {
  margin-bottom: 0rem;
}

/* Brand Column */
.uact-footer-brand-col {
  margin-bottom: 0rem;
}

.uact-footer-brand-image {
  max-height: 100px;
  width: auto;
  margin-bottom: 0.5rem;
  filter: brightness(0) invert(1);
}

.uact-footer-brand-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Navigation Columns */
.uact-footer-nav-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
  font-family: 'Poppins', sans-serif;
}

.uact-footer-nav-list-group {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uact-footer-nav-list-item {
  margin-bottom: 0.5rem;
}

.uact-footer-nav-anchor {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.25s ease;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.uact-footer-nav-anchor:hover {
  color: var(--primary);
  text-decoration: none;
}

/* ============================================================
   NEWSLETTER COLUMN
   ============================================================ */

.uact-footer-newsletter-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
  font-family: 'Poppins', sans-serif;
}

.uact-footer-form-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease;
}

.uact-footer-form-group:focus-within {
  border-color: var(--primary);
}

.uact-footer-form-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.6rem 1rem;
  color: var(--white);
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
}

.uact-footer-form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.uact-footer-form-btn {
  background: var(--primary);
  border: none;
  color: var(--white);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 0.9rem;
}

.uact-footer-form-btn:hover {
  background: #c9851f;
}

/* Social Icons */
.uact-footer-social-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 10rem 0;
  display: flex;
  gap: 0.6rem;
}

.uact-footer-social-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.uact-footer-social-list li a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ============================================================
   SEPARATOR LINE
   ============================================================ */

.uact-footer-separator-line-element {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 1.5rem 0;
}

/* ============================================================
   MIDDLE BRAND INFO ROW
   ============================================================ */

.uact-footer-brand-info-row {
  margin-bottom: 1rem;
}

/* Crisis Support */
.uact-footer-crisis-support-box {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  background: rgba(226, 152, 43, 0.08);
  padding: 0.4rem 0.7rem;
  border-radius: 30px;
  border: 1px solid rgba(226, 152, 43, 0.1);
}

.uact-footer-crisis-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.uact-footer-crisis-text-prefix {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 400;
}

.uact-footer-crisis-text-number {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}

/* Quote */
.uact-footer-inspirational-quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--primary);
  font-weight: 300;
  margin: 0;
  font-family:
    'Poppins', sans-serif;
  text-transform: uppercase;
}

/* ============================================================
   COPYRIGHT & LEGAL ROW
   ============================================================ */

.uact-footer-legal-copyright-row {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.uact-footer-copyright-paragraph {
  font-size: 0.8rem;
  color: rgb(255 255 255 / 83%);
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.uact-footer-copyright-paragraph a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

.uact-footer-copyright-paragraph a:hover {
  color: var(--primary);
  text-decoration: none;
}

.uact-footer-legal-list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.uact-footer-legal-list-item {
  display: inline;
}

.uact-footer-legal-anchor {
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
  font-family: 'Poppins', sans-serif;
}

.uact-footer-legal-anchor:hover {
  color: var(--primary);
  text-decoration: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
  .uact-global-footer-section {
    padding: 2.5rem 0 1.5rem;
  }

  .uact-footer-brand-col {
    text-align: center;
  }

  .uact-footer-newsletter-col {
    margin-top: 1.5rem;
    text-align: center;
  }

  .uact-footer-social-list {
    justify-content: center;
  }

  .uact-footer-crisis-support-box {
    justify-content: center;
    flex-wrap: wrap;
  }

  .uact-footer-quote-col {
    margin-top: 0.5rem;
  }

  .uact-footer-legal-list-inline {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .uact-footer-copyright-col {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .uact-global-footer-section {
    padding: 2rem 0 1rem;
  }

  .uact-footer-nav-col {
    margin-bottom: 1.5rem;
  }

  .uact-footer-nav-heading {
    font-size: 0.65rem;
  }

  .uact-footer-nav-anchor {
    font-size: 0.75rem;
  }

  .uact-footer-brand-image {
    max-height: 50px;
  }

  .uact-footer-newsletter-text {
    font-size: 0.75rem;
  }

  .uact-footer-form-input {
    font-size: 0.75rem;
    padding: 0.5rem 0.8rem;
  }

  .uact-footer-form-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .uact-footer-crisis-text-prefix {
    font-size: 0.65rem;
  }

  .uact-footer-crisis-text-number {
    font-size: 0.75rem;
  }

  .uact-footer-inspirational-quote-text {
    font-size: 0.8rem;
  }

  .uact-footer-legal-anchor {
    font-size: 0.65rem;
  }

  .uact-footer-copyright-paragraph {
    font-size: 0.6rem;
  }

  .uact-footer-legal-list-inline {
    gap: 0.6rem;
  }

  .uact-footer-social-list li a {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .uact-footer-nav-col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .uact-footer-crisis-support-box {
    padding: 0.3rem 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .uact-footer-legal-list-inline {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
}

/* footer section end */

/* need help now start */
.inner-banner,
.united {
  text-align: center;
  padding: 80px 20px;
}

/* ---------- Breadcrumb ---------- */
.inner-banner .inner-banner-breadcrumb,
.united .inner-banner-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  list-style: none;
  padding: 0;
}

/* Decorative line */
.inner-banner .inner-banner-breadcrumb .line,
.united .inner-banner-breadcrumb .line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background-color: var(--primary);
  margin-right: 14px;
}

/* Breadcrumb links */
.inner-banner .inner-banner-breadcrumb a,
.united .inner-banner-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.inner-banner .inner-banner-breadcrumb a:hover,
.united .inner-banner-breadcrumb a:hover {
  color: var(--white);
  opacity: 0.9;
}

/* Separator (/) */
.inner-banner .inner-banner-breadcrumb .separator,
.united .inner-banner-breadcrumb .separator {
  color: var(--primary);
  opacity: 0.5;
  font-weight: 300;
  margin: 0 4px;
}

/* Current page (not a link) */
.inner-banner .inner-banner-breadcrumb .current,
.united .inner-banner-breadcrumb .current {
  color: var(--white);
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 1.5px;
}

/* ---------- Subtitle ---------- */
.inner-banner .subtitle,
.united .subtitle {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 18px;
  position: relative;
  display: inline-block;
}

/* ---------- Main Title ---------- */
.inner-banner .inner-banner-title,
.united .inner-banner-title {
  font-size: clamp(2.5rem, 6vw, 6rem);
  /* responsive 40px → 96px */
  font-weight: 500;
  color: var(--white);
  margin: 0 0 24px;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

/* ---------- Meta paragraphs (typeset notes) ---------- */
.inner-banner .inner-banner-meta,
.united .inner-banner-meta {
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--primary);
  opacity: 0.9;
  margin: 4px auto 0;
  max-width: 700px;
  font-style: italic;
  letter-spacing: 0.3px;
}

/* ---------- Main Paragraph ---------- */
.inner-banner .inner-bannerpara,
.united .inner-bannerpara {
  font-size: 1.35rem;
  font-weight: 400;
  color: #dadada;
  width: 70%;
  margin: 2rem auto 0;
  line-height: 1.7;
}

/* need help now end */

/* ---------- Section Label ---------- */
.section-label {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
  line-height: 1.2;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 2px;
  background-color: var(--primary);
}

/* ---------- Main Title ---------- */
.main-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* ---------- Sub Title ---------- */
.sub-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--secondary);
  opacity: 0.7;
  margin: 0 0 48px;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

/* ---------- Section Paragraph ---------- */
.section-para {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--secondary);
  margin: 0 0 16px;
}

.section-para:last-child {
  margin-bottom: 0;
}

/* ---------- Section Note (italic small) ---------- */
.section-note {
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  color: var(--secondary);
  opacity: 0.6;
  line-height: 1.6;
  margin: 24px 0 0;
  max-width: 900px;
}

/* ============================================
   SECTION 1 — PAGE MAP
   ============================================ */
.page-map-row {
  margin-bottom: 16px;
}

.page-map-item {
  padding: 24px 32px 24px 40px;
  border-radius: 8px;
  background-color: var(--white);
  border: 1px solid rgba(51, 51, 51, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-map-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 8px 0 0 8px;
}

.page-map-item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Variants */
.page-map-item--urgent {
  background-color: rgba(226, 152, 43, 0.06);
  border-color: rgba(226, 152, 43, 0.2);
}

.page-map-item--urgent::before {
  background-color: var(--primary);
}

.page-map-item--urgent .page-map-number {
  color: var(--primary);
}

.page-map-item--info {
  background-color: rgba(51, 51, 51, 0.03);
  border-color: rgba(51, 51, 51, 0.12);
}

.page-map-item--info::before {
  background-color: var(--secondary);
}

.page-map-item--info .page-map-number {
  color: var(--secondary);
}

.page-map-item--closing {
  background-color: rgba(226, 152, 43, 0.08);
  border-color: rgba(226, 152, 43, 0.3);
}

.page-map-item--closing::before {
  background-color: var(--primary);
}

.page-map-item--closing .page-map-number {
  color: var(--primary);
}

.page-map-number {
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  letter-spacing: -0.5px;
}

.page-map-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.2px;
}

.page-map-desc {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--secondary);
  opacity: 0.75;
  margin: 0;
  line-height: 1.5;
}

.page-map-item .row {
  align-items: center;
}

/* ============================================
   SECTION 2 — BLOCKS 0 AND 1
   ============================================ */
.blocks-row {
  margin-top: 20px;
  margin-bottom: 30px;
}

.block-card {
  background-color: var(--white);
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 4px;
  padding: 0 28px 28px;
  height: 100%;
  position: relative;
}

.block-card-top {
  height: 6px;
  margin: 0 -28px 24px;
  border-radius: 4px 4px 0 0;
}

.block-card-top--primary {
  background-color: var(--primary);
}

.block-card-label {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.block-card-action {
  text-align: right;
  margin-bottom: 20px;
}

.quick-exit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #b03a2e;
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.quick-exit-btn:hover {
  background-color: #8e2c22;
  transform: translateY(-1px);
}

.quick-exit-icon {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.85;
  line-height: 1;
}

.danger-box {
  background-color: rgba(176, 58, 46, 0.06);
  border: 1.5px solid #b03a2e;
  border-radius: 4px;
  padding: 18px 20px;
  font-size: 25px;
  font-weight: 700;
  color: #b03a2e;
  line-height: 1.5;
  margin-bottom: 22px;
}

.danger-link {
  color: #b03a2e;
  text-decoration: underline;
  font-weight: 700;
}

.danger-link:hover {
  color: #8e2c22;
}

.note-box {
  background-color: #f1ede4;
  border: 1px solid #e3ddd0;
  border-radius: 4px;
  padding: 30px 32px;
}

.note-box-label {
  display: block;
  font-size: 1.425rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

/* ============================================
   SECTION 3 — BLOCK 2 THE NUMBERS
   ============================================ */
.number-row {
  background-color: var(--white);
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-left: 6px solid var(--primary);
  border-radius: 6px;
  padding: 22px 32px;
  margin-bottom: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.number-row:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.number-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  display: block;
  letter-spacing: -0.3px;
}

.number-value a {
  color: var(--primary);
}

.number-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.2px;
}

.number-desc {
  font-size: 1rem;
  font-weight: 400;
  color: var(--secondary);
  opacity: 0.85;
  margin: 0;
  line-height: 1.55;
}

/* ============================================
   SECTION 4 — BLOCK 3 SITUATIONS
   ============================================ */

/* Row spacing */
.situations-row {
  margin-bottom: 30px;
}

/* ---------- Info Box (uses --primary tint) ---------- */
.info-box {
  background-color: rgba(226, 152, 43, 0.08);
  border: 1px solid rgba(226, 152, 43, 0.25);
  border-left: 6px solid var(--primary);
  border-radius: 8px;
  padding: 22px 26px;
  margin-bottom: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* ---------- Info Box Label (top text) ---------- */
.info-box-label {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  line-height: 1.35;
  text-transform: capitalize;
}

/* ---------- Info Box Value (phone number) ---------- */
.info-box-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.info-box-value a {
  color: var(--black);
}

/* ---------- Info Box Description (side text) ---------- */
.info-box-desc {
  font-size: 1rem;
  font-weight: 400;
  color: var(--secondary);
  opacity: 0.85;
  margin: 0;
  line-height: 1.55;
}

/* ---------- Accuracy Box (uses soft cream + primary accent) ---------- */
.accuracy-box {
  background-color: #fdf6ea;
  border: 1px solid rgba(226, 152, 43, 0.35);
  border-radius: 8px;
  padding: 32px 34px;
  margin-top: 20px;
}

.accuracy-box-label {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 22px;
  line-height: 1.3;
}


/* ============================================
   SECTION 5 — BLOCK 4 FULL COPY
   ============================================ */

/* ---------- Emergency Bar (top) ---------- */
.emergency-bar {
  background-color: #b03a2e;
  padding: 14px 24px;
}

.emergency-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.emergency-link {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.emergency-link:hover {
  opacity: 0.85;
}

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

.text-end {
  text-align: right;
}

/* ---------- Content Rows ---------- */
.content-row {
  padding: 14px 0;
}

/* ---------- Content H2 ---------- */
.content-h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.4px;
}

/* ---------- Content H3 ---------- */
.content-h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

/* ---------- Content Body ---------- */
.content-body {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.75;
  margin: 0;
}

/* ---------- Content Links ---------- */
.content-link {
  color: var(--primary);
  text-decoration: underline !important;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
  font-weight: 700;
}

.content-link:hover {
  color: #8e2c22;
}

.content-link-strong {
  color: #b03a2e;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.content-link-strong:hover {
  color: #8e2c22;
}

/* ============================================
   SECTION 6 — BLOCK 5 FULL COPY
   ============================================ */

/* ---------- Content Rows ---------- */
.content-row {
  padding: 14px 0;
}

/* Highlighted rows (beige background — image jaisa) */
.content-row--highlight {
  background-color: #f5f1ea;
  padding: 22px 28px;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* ---------- Content H2 ---------- */
.content-h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.4px;
}

/* ---------- Content H3 ---------- */
.content-h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.2px;
  text-transform: capitalize;
}

/* ---------- Content Body ---------- */
.content-body {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.75;
  margin: 0;
}

/* ---------- Content List ---------- */
.content-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-list li {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.75;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

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

/* Bullet (dot) */
.content-list li::before {
  content: '·';
  position: absolute;
  left: 6px;
  top: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}


/* ============================================
   SECTION 8 — BLOCKS 6 AND 7
   ============================================ */

/* ---------- Block 6 — Tonight Card ---------- */
.tonight-card {
  background-color: #f5f1ea;
  border-radius: 8px;
  padding: 32px 34px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Top accent strip — red */
.tonight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-color: #b03a2e;
}

/* Label */
.tonight-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b03a2e;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Intro paragraph spacing */
.tonight-intro {
  margin-bottom: 28px;
}

/* Individual item */
.tonight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.tonight-item:last-child {
  margin-bottom: 0;
}

/* Dot bullet */
.tonight-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #b03a2e;
  margin-top: 8px;
}

/* Paragraph inside item */
.tonight-item .content-body {
  margin: 0;
}

.tonight-item .content-body strong {
  color: var(--black);
  font-weight: 700;
}

/* ============================================
   SECTION 8 — BLOCKS 6 AND 7
   ============================================ */

/* ============================================
   BLOCK 6 — TONIGHT CARD
   ============================================ */
.tonight-card {
  background-color: #faf6ef;
  /* --primary ka soft tint */
  border-radius: 8px;
  padding: 32px 34px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 152, 43, 0.2);
}

/* Top accent strip — --primary */
.tonight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-color: var(--primary);
}

/* Label */
.tonight-label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Intro paragraph spacing */
.tonight-intro {
  margin-bottom: 28px;
}

/* Individual item */
.tonight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.tonight-item:last-child {
  margin-bottom: 0;
}

/* Dot bullet — --primary */
.tonight-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--primary);
  margin-top: 8px;
}

/* Paragraph inside item */
.tonight-item .content-body {
  margin: 0;
}

.tonight-item .content-body strong {
  color: var(--black);
  font-weight: 700;
}

/* ============================================
   BLOCK 7 — ONWARD CARD
   ============================================ */
.onward-card {
  background-color: var(--white);
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 8px;
  padding: 32px 34px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Top accent strip — --secondary (dark) */
.onward-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-color: var(--secondary);
}

/* Label */
.onward-label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Intro text */
.onward-intro {
  margin-bottom: 30px;
}

/* Featured box — uses --primary accent */
.onward-feature {
  background-color: rgba(226, 152, 43, 0.08);
  border: 1.5px solid var(--primary);
  border-radius: 6px;
  padding: 26px 28px;
  margin-bottom: 40px;
}

.onward-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.onward-feature-text {
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  color: var(--secondary);
  margin: 0;
  line-height: 1.6;
}

/* Regular text below feature */
.onward-text {
  margin-bottom: 18px;
}

.onward-text:last-child {
  margin-bottom: 0;
}

/* ============================================
   SECTION 9 — THE RULE THAT GOVERNS THIS PAGE
   ============================================ */
.rule-section {
  background-color: var(--black);
  padding: 80px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- Header overrides (dark bg) ---------- */
.rule-label.section-label {
  color: var(--primary);
}

.rule-label.section-label::before {
  background-color: var(--primary);
}

.rule-title.main-title {
  color: var(--white);
}

.rule-subtitle.sub-title {
  color: var(--white);
  opacity: 0.6;
  margin-bottom: 48px;
}

/* ---------- Cards Row ---------- */
.rule-row {
  margin-bottom: 40px;
}

/* ---------- Rule Card ---------- */
.rule-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 26px 28px;
  height: 100%;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.rule-section .col-md-4 {
  margin-bottom: 1.5rem;
}

.rule-card:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(226, 152, 43, 0.3);
  transform: translateY(-3px);
}

/* Card title — --primary */
.rule-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 14px;
  line-height: 1.35;
  letter-spacing: -0.2px;
  text-transform: capitalize;
}

/* Card text */
.rule-card-text {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--white);
  opacity: 0.7;
  line-height: 1.65;
  margin: 0;
}

/* ---------- Bottom Quote ---------- */
.rule-quote {
  border-left: 4px solid var(--primary);
  padding: 8px 0 8px 28px;
  margin-top: 24px;
}

.rule-quote-text {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  margin: 0;
  opacity: 0.9;
}


/* ============================================
   SECTION 10 — TECHNICAL SPEC ROWS
   ============================================ */

/* ---------- Spec Row (label + value) ---------- */
.spec-row {
  padding: 20px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
  margin-left: 0;
  margin-right: 0;
}

.spec-row:last-of-type {
  border-bottom: none;
}

/* Highlighted rows (beige bg — image jaisa) */
.spec-row--highlight {
  background-color: #f5f1ea;
  padding: 20px 0px;
  border-radius: 4px;
  border-bottom: none;
  margin-bottom: 8px;
}

/* Row label (left column) */
.spec-row-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.3px;
  line-height: 1.5;
  padding-top: 2px;
  text-transform: capitalize;
}

/* Body inside spec row */
.spec-row .content-body {
  margin: 0;
}

.spec-row .content-body strong {
  color: var(--black);
  font-weight: 700;
}

/* ============================================
   SECTION 11 — PLACEMENT, LINKING AND MAINTENANCE
   ============================================ */

/* ---------- Cards Row ---------- */
.placement-row {
  margin-bottom: 40px;
}

/* ---------- Placement Card ---------- */
.placement-card {
  background-color: #f7f3eb;
  border: 1px solid rgba(226, 152, 43, 0.2);
  border-radius: 8px;
  padding: 30px 32px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.placement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

/* Card label (top — uppercase) */
.placement-card-label {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 22px;
  line-height: 1.3;
}

/* URL text (emphasized) */
.placement-url {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

/* Content list inside card */
.placement-card .content-list li {
  font-size: 1.2rem;
  line-height: 1.65;
  margin-bottom: 10px;
}

.placement-card .content-list li::before {
  color: var(--primary);
}

/* Content body inside card */
.placement-card .content-body {
  font-size: 1.2rem;
  line-height: 1.7;
}

/* ============================================
   WARNING BOX (Before Launch)
   ============================================ */
.warning-box {
  background-color: #fdf6ea;
  border: 1px solid rgba(226, 152, 43, 0.35);
  border-radius: 8px;
  padding: 34px 36px;
  position: relative;
}

.warning-box-label {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.4;
}

.warning-box .content-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.warning-box .content-body:last-child {
  margin-bottom: 0;
}

/*  */


/* ============================================
   SECTION — CONTACT EMAILS
   ============================================ */

.blocks-section {
  padding: 2rem 0;
}

/* ---------- Contact Row ---------- */
.contact-row {
  margin-bottom: 24px;
}

/* ---------- Contact Card ---------- */
.contact-card {
  display: block;
  background-color: var(--white);
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: 10px;
  padding: 36px 28px;
  height: 100%;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  margin-bottom: 24px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
  text-decoration: none;
}

/* ---------- Icon Circle ---------- */
.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(226, 152, 43, 0.1);
  color: var(--primary);
  margin-bottom: 22px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background-color: var(--primary);
  color: var(--white);
}

/* ---------- Card Label ---------- */
.contact-card-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  opacity: 0.75;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* ---------- Card Email ---------- */
.contact-card-email {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.2px;
  line-height: 1.4;
  word-break: break-word;
  transition: color 0.3s ease;
}

.contact-card:hover .contact-card-email {
  color: var(--black);
}

/* ---------- Bottom Note ---------- */
.contact-note {
  text-align: center;
  margin-top: 12px;
}

.contact-note-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.contact-note-link:hover {
  color: var(--black);
}