/* ------------------------------------------
   Global Body Overflow Fix
------------------------------------------ */
body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

/* ------------------------------------------
   Hero Section
------------------------------------------ */
.hero-section {
  background-image: url('/public/aboutus-page/webp/vision_bg.webp');
  background-size: cover;
  background-position: center;
  
  width: 100%;
  height: clamp(46rem, 35.9375vw, 230rem);
  opacity: 1;
  position: relative;
  margin-bottom: 0;
}

/* ------------------------------------------
   Vision & Mission Section
------------------------------------------ */
.vision-mission-section {
  position: relative;
  margin: 0;
  padding: clamp(10rem, 7.8125vw, 50rem) 0 clamp(6rem, 4.6875vw, 30rem);
}

.section-divider {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: clamp(4rem, 3.125vw, 20rem);
  position: absolute;
  top: clamp(-3.5rem, -2.734375vw, -17.5rem);
  left: 0;
  right: 0;
  padding: 0 var(--spacer-md);
  flex-wrap: wrap;
  z-index: 10;
}

.divider-box {
  width: 44rem;
  height: 15rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3rem;
  color: #f2efea;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: visible;
}

.left-box {
  background-color: #C74A9B;
  text-align: left;
}

.right-box {
  background-color: #436E55;
  text-align: right;
}

.box-small-text {
  font-size: 3rem;
  font-weight: 500;
  font-family: var(--font-primary);
  margin-bottom: -0.5rem;
}

.box-big-text {
  font-size: 10rem;
  font-weight: 800;
  font-family: var(--font-secondary);
  line-height: 1;
}

.align-left {
  align-self: flex-start;
}

.align-right {
  align-self: flex-end;
}

.description {
  position: absolute;
  bottom: -19rem;
  left: 50%;
  transform: translateX(-50%);
  width: 53rem;
  height: 53rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 3.125rem;
  font-weight: 300;
  font-family: var(--font-primary);
  text-align: center;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 2;
}

.vision-desc {
  background-color: #C74A9BB2;
}

.mission-desc {
  background-color: #436E55B2;
}

.divider-box:hover .description {
  opacity: 1;
  visibility: visible;
  bottom: -4rem;
}

.divider-box:hover {
  background-color: transparent;
}

.divider-box:hover .box-small-text,
.divider-box:hover .box-big-text {
  z-index: 4;
}

/* ------------------------------------------
   Goals Section
------------------------------------------ */
.goals-section {
  margin: var(--spacer-xl) 0;
  padding: 8rem var(--spacer-lg);
  position: relative;
}

.goals-section .section-title h1 {
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-bold);
  font-size: 4rem;
  color: #C32921;
  position: relative;
  margin-bottom: 6rem !important;
  margin-left: 5%;
  letter-spacing: 0.1rem;
  text-align: left;
}

.goals-section .section-title h1::after {
  content: '';
  position: absolute;
  display: block;
  width: 25rem;
  height: 2px;
  background-color: #C32921;
  bottom: 1.5rem;
  left: 18rem !important;
}

.goal-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-left: var(--spacer-md);
}

.goal-item {
  position: relative;
  width: 100%;
  height: 17.5rem;
  padding: 3rem 8rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: transparent;
  transform: translateY(-2px);
  margin: 1rem 0;
}

.goal-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/public/shapes/inward-border-red-filled.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: -1;
}

.goal-number {
  font-size: 12.5rem;
  font-weight: 400;
  font-family: 'Nunito Sans', sans-serif;
  color: #f2efea;
  line-height: 100%;
  letter-spacing: 0%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  width: auto;
  text-align: center;
}

.goal-item p {
  font-size: 3rem;
  font-weight: 300;
  font-family: 'Nunito Sans', sans-serif;
  color: #f2efea;
  line-height: 100%;
  letter-spacing: 0%;
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: none;
  margin: 0;
  text-align: left;
  overflow: visible;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* ------------------------------------------
   Outcomes Section
------------------------------------------ */
.outcomes-section {
  margin: var(--spacer-xl) 0;
  
  position: relative;
  overflow: visible;
}

.outcomes-section .section-title h1 {
  font-family: var(--font-secondary);
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  color: #C74A9B;
  position: relative;
  margin-bottom: 6rem;
  margin-left: 5%;
  letter-spacing: 0.1rem;
  text-align: left;
}

.outcomes-section .section-title h1::after {
  content: '';
  position: absolute;
  display: block;
  width: 25rem;
  height: 2px;
  background-color: #C74A9B;
  bottom: 1.5rem;
  left: 25rem !important;
}

.outcomes-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  width: 100%;
  max-width: 100%;
  
  justify-content: space-between;
  align-items: flex-start;
  background-color: #cad8db;
  border-radius: 1.5rem;
  padding: 0rem 0rem !important; 
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.outcomes-list {
  flex: 1 1 55%;
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 8rem 3rem 0 3rem;
  gap: 2.5rem;
}

.outcomes-list li {
  position: relative;
  margin: auto;
  font-size: 3rem;
  max-width: 85%;
  font-family: var(--font-primary);
  line-height: 1.6;
  padding-left: 2.5rem;
  color: #252422;
}

.outcomes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #C74A9B;
  border-radius: 50%;
}

.outcomes-image {
  flex: 1 1 42%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  
}

.outcomes-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: contain;
}

/* ------------------------------------------
   Approaches Section
------------------------------------------ */
.approaches-section {
  margin: var(--spacer-xl) 0;
  padding: 8rem var(--spacer-lg);
  background-color: transparent;
}

.approaches-section .section-title h1 {
  font-family: var(--font-secondary);
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  color: #339A5E;
  position: relative;
  margin-bottom: 12rem !important;
  margin-left: 5%;
  letter-spacing: 0.1rem;
  text-align: left;
}

.approaches-section .section-title h1::after {
  content: '';
  position: absolute;
  display: block;
  width: 25rem;
  height: 2px;
  background-color: #339A5E;
  bottom: 1.5rem;
  left: 28rem;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 4rem;
  padding: 5rem;
}

.approach-card {
  position: relative;
  text-align: center;
  padding: 4rem 2rem !important;
  background: transparent;
  border: 2px solid #436E55;
  border-radius: 1.5rem;
  transition: transform 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
}

.approach-card img {
  position: absolute;
  top: -11rem;
  left: 50%;
  transform: translateX(-50%);
  width: 12rem;
  height: 12rem;
  object-fit: cover;
  z-index: 2;
}

.approach-card::before {
  content: '';
  position: absolute;
  top: -12rem;
  left: 50%;
  transform: translateX(-50%);
  width: 14rem;
  height: 14rem;
  background-image: url('/public/shapes/img-bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.approach-card p {
  
  font-family: var(--font-primary);
  font-size: 2.5rem !important;
  line-height: 1.5;
  color: #252422;
  max-width: 90%;
  margin: auto;
}

/* ------------------------------------------
   Core Values Section
------------------------------------------ */
.values-section {
  margin: var(--spacer-xl) 0;
  padding: 8rem var(--spacer-lg);
  background-color: #f1ecda;
  position: relative;
}

.values-section .section-title h1 {
  font-family: var(--font-secondary);
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  color: #C32921;
  position: relative;
  margin-bottom: 6rem;
  margin-left: 5%;
  letter-spacing: 0.1rem;
  text-align: left;
}

.values-section .section-title h1::after {
  content: '';
  position: absolute;
  display: block;
  width: 25rem;
  height: 2px;
  background-color: #C32921;
  bottom: 1.5rem;
  left: 20rem !important;
}

.values-container {
  position: relative;
  width: 100%;
  max-width: 120rem;
  margin: 5.2rem auto 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.values-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  width: 65rem;
  height: 65rem;
  overflow: hidden;
  margin: 0 auto;
}

.values-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/public/shapes/inward-border-red-filled-box.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.values-grid .center-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(20rem, 35vw, 42rem);
  height: clamp(20rem, 35vw, 42rem);
  background-image: url('/public/aboutus-page/center-shape.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}

.values-flex {
  display: none;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  margin: 3rem auto 0;
  padding: 0;
}

.value-card {
  background: #9C3236;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  color: #F2EFEA;
  text-align: center;
  box-shadow: 0 8px 25px rgba(156, 50, 54, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(156, 50, 54, 0.3);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.value-card:hover::before {
  left: 100%;
}

.value-card-title {
  font-size: 3.5rem;
  font-weight: 600;
  font-family: 'Nunito Sans', sans-serif;
  margin-bottom: 1.5rem;
  color: #FED672;
}

.value-card-description {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  font-family: var(--font-primary);
  color: #F2EFEA;
}

.value-item {
  background-color: transparent;
  color: #FED672;
  padding: clamp(1rem, 3vw, 2rem);
  text-align: center;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 200;
  line-height: 100%;
  letter-spacing: -7%;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.value-title {
  font-size: clamp(4rem, 10vw, 12rem);
  transition: font-size 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: auto;
  width: 100%;
}

.value-description {
  font-size: clamp(1.4rem, 2.2vw, 2.5rem);
  font-weight: 300;
  line-height: 1.4;
  opacity: 0;
  color: #F2EFEA;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 70%;
  text-align: center;
  padding: 0 0.5rem;
}

.value-item:hover .value-title {
  font-size: clamp(3rem, 2.5vw, 2.5rem);
}

.value-item:hover .value-description {
  opacity: 1;
  visibility: visible;
}

.value-item:hover {
  transform: scale(1.05);
  z-index: 4;
}

.value-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.value-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.value-item:nth-child(3) { grid-column: 1; grid-row: 2; }
.value-item:nth-child(4) { grid-column: 2; grid-row: 2; }

/* ------------------------------------------
   Vision of Change Section
------------------------------------------ */
.vision-change-section {
  margin: var(--spacer-xl) 0;
  padding: 8rem var(--spacer-lg);
}

.vision-change-section .section-title h1 {
  font-family: var(--font-secondary);
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  color: #339A5E;
  position: relative;
  margin-bottom: 2rem;
  margin-left: 10%;
  letter-spacing: 0.1rem;
  text-align: left;
}

.vision-change-section .section-title h1::after {
  content: '';
  position: absolute;
  display: block;
  width: 25rem;
  height: 2px;
  background-color: #339A5E;
  bottom: 1.5rem;
  left: 60rem;
}

.vision-content {
  max-width: 80% !important;
  margin: 0 auto;
  line-height: 1;
  
}

.vision-content p {
  font-size: 2rem !important;
  font-family: var(--font-primary);
  line-height: 1.6;
  margin-bottom: var(--spacer-md);
  color: #252422;
}

.vision-content h3 {
  font-size: 2.4rem !important;
  font-family: var(--font-primary);
  font-weight: 800;
}

.vision-list {
  list-style: none;
  margin: var(--spacer-md) 0;
  padding-left: 1rem;
}

.vision-list li {
  position: relative;
  font-size: 2rem !important;
  font-family: var(--font-primary);
  font-weight: 800;
  margin-bottom: var(--spacer-sm);
  padding-left: 2.5rem;
  color: #252422;
}

.vision-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.2rem;
  height: 1.2rem;
  background-color: var(--primary-color-3);
  border-radius: 50%;
}

.learn-more-btn {
  color: #C32921;
  padding: 1rem;
  border: 2px solid #C32921;
  border-radius: 8px;
  font-size: 1.875rem;
  font-family: var(--font-primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  margin-top: var(--spacer-lg);
  letter-spacing: 0;
}
/* font-family: Nunito Sans;
font-weight: 500;
font-style: Medium;
font-size: 30px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%; */


.learn-more-btn:hover {
  background-color: #9C3236;
  color: #F2EFEA;
  transform: translateY(-2px);
}

/* ------------------------------------------
   Responsive Design
------------------------------------------ */
/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
  .hero-section {
    height: 52rem;
  }

  .values-grid {
    width: 130rem;
    height: 58rem;
  }
  .value-title{
    font-size:clamp(4rem, 10vw, 10rem);
    height: auto;
    width: 100%;
  }

  .values-grid::before {
    background-size: 100% 100%;
  }

  .values-grid .center-shape {
    width: 46rem;
    height: 46rem;
  }

  .vision-content {
    max-width: 85%;
  }
}

/* Desktop (1024px to 1439px) */
@media (max-width: 1439px) and (min-width: 1024px) {
  .hero-section {
    height: 42rem;
  }

  .section-title h1 {
    font-size: 3.6rem;
  }

  .section-divider {
    gap: 3rem;
  }

  .divider-box {
    width: 38rem;
    height: 14rem;
  }

  .box-big-text {
    font-size: 8.5rem;
  }

  .description {
    width: 48rem;
    height: 48rem;
    font-size: 2.8rem;
    bottom: -16rem;
  }

  .divider-box:hover .description {
    bottom: -3rem;
  }

  .goals-section .section-title h1::after {
    width: 32rem;
    left: 16rem;
  }

  .outcomes-section .section-title h1::after {
    width: 18rem;
    left: 22rem;
  }

  .approaches-section .section-title h1::after {
    width: 22rem;
    left: 28rem;
  }

  .values-section .section-title h1::after {
    width: 22rem;
    left: 28rem;
  }

  .vision-change-section .section-title h1::after {
    width: 30rem;
    left: 56rem;
  }

  .goal-item {
    height: 16rem;
    padding: 2.8rem 7rem;
  }

  .goal-number {
    font-size: 11rem;
  }

  .goal-item p {
    font-size: 2.7rem;
  }

  .outcomes-wrapper {
    padding: 3.5rem 2.5rem;
    gap: 3rem;
  }

  .outcomes-list li {
    max-width: 85%;
    font-size: 1.8rem ;
  }

  .outcomes-image {
    margin-top: 0;
    margin-bottom: 0;
  }

  .outcomes-image img {
    max-width: 100%;
    width: 100%;
    object-fit: contain;
  }

  .approach-list {
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 3.5rem;
  }

  .approach-card {
    padding: 7rem 1.8rem 2.5rem;
  }

  .approach-card img {
    width: 10rem;
    height: 10rem;
    top: -9rem;
  }

  .approach-card::before {
    width: 12rem;
    height: 12rem;
    top: -10rem;
  }

  .approach-card p {
    font-size: 1.6rem;
  }

  .values-grid {
    width: 110rem;
    height: 60rem;
  }

  .values-grid::before {
    background-size: 100% 100%;
  }

  .values-grid .center-shape {
    width: 38rem;
    height: 38rem;
  }

  .value-item,
  .value-title {
    font-size: 10.5rem;
    height: auto;
    width: 100%;
  }

  .value-description {
    font-size: 2.2rem;
  }

  .vision-content {
    max-width: 88%;
  }

  .vision-content h3 {
    font-size: 3rem;
  }

  .vision-content p,
  .vision-list li {
    font-size: 1.7rem;
  }
}

/* Tablet (727px to 1023px) */
@media (max-width: 1023px) and (min-width: 727px) {
  .hero-section {
    height: 38rem;
  }

  .section-title h1 {
    font-size: 3.2rem;
    text-align: center;
    margin-left: 0;
  }

  .section-title h1::after {
    left: 50%;
    transform: translateX(-50%);
    width: 18rem;
  }

  .section-divider {
    gap: 3rem;
    padding: 0 1rem;
  }

  .divider-box {
    width: 34rem;
    height: 13rem;
  }

  .box-small-text {
    font-size: 2.2rem;
  }

  .box-big-text {
    font-size: 5.5rem;
  }

  .description {
    width: 34rem;
    height: 34rem;
    font-size: 1.8rem;
    bottom: -12rem;
  }

  .divider-box:hover .description {
    bottom: -2rem;
  }

  .goals-section,
  .outcomes-section,
  .approaches-section,
  .values-section,
  .vision-change-section {
    padding: 4rem 1.5rem;
  }


  .goals-section .section-title h1::after {
    width: 16rem !important;
    left: 26rem !important;
  }

  .outcomes-section .section-title h1::after {
    width: 16rem !important;
    left: 33rem !important;
  }

  .approaches-section .section-title h1::after {
    width: 16rem !important;
    left: 36rem !important;
  }

  .values-section .section-title h1::after {
    width: 16rem !important;
    left: 27rem !important;
  }

  .vision-change-section .section-title h1::after {
    width: 16rem !important;
    left: 64rem !important;
  }

  .goal-item {
    height: auto;
    min-height: 12rem;
    padding: 2rem 1.5rem;
    flex-direction: row;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin: 1rem auto;
  }

  .goal-number {
    font-size: 6rem;
  }

  .goal-item p {
    font-size: 1.8rem;
    text-align: center;
    display: block;
    -webkit-line-clamp: none;
  }

  .outcomes-wrapper {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2.5rem;
    width: 100%;
    margin: 0 auto;
  }

  .outcomes-list {
    flex: 1;
  }

  .outcomes-list li {
    max-width: 100%;
    font-size: 1.5rem;
    margin: 0;
  }

  .outcomes-image img {
    max-width: 70%;
    width: 70%;
    object-fit: contain;
  }

  .approach-list {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .approach-card {
    padding: 5.5rem 1.8rem 2.5rem;
    max-width: 32rem;
    margin: 0 auto;
  }

  .approach-card img {
    width: 9rem;
    height: 9rem;
    top: -8rem;
  }

  .approach-card::before {
    width: 11rem;
    height: 11rem;
    top: -9rem;
  }

  .approach-card p {
    font-size: 1.5rem;
  }

  .values-container {
    max-width: 90rem;
  }

  .values-grid {
    width: 100%;
    height: 45rem;
  }

  .values-grid::before {
    background-size: 90% 90%;
  }

  .values-grid .center-shape {
    width: 18rem;
    height: 18rem;
  }

  .value-item,
  .value-title {
    font-size: 5rem;
    height: auto;
    width: 100%;
  }

  .value-description {
    font-size: 1.6rem;
  }

  .value-item:hover .value-title {
    font-size: 2rem;
  }

  .value-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .value-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .value-item:nth-child(3) { grid-column: 1; grid-row: 2; }
  .value-item:nth-child(4) { grid-column: 2; grid-row: 2; }

  .vision-content {
    max-width: 98%;
  }

  .vision-content h3 {
    font-size: 2.2rem;
  }

  .vision-content p,
  .vision-list li {
    font-size: 1.5rem;
  }

  .learn-more-btn {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}

/* Mobile (up to 726px) */
@media (max-width: 726px) {
  .hero-section {
    height: 32rem;
  }

  .section-title h1 {
    font-size: 2.8rem;
  }

  .section-divider {
    flex-direction: column;
    gap: 6rem;
    top: -6rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    position: relative;
  }
  .vision-mission-section{
    padding: 0 !important;
  }
  .goals-section{
    margin-top: 0 !important;
  }
  .goals-section .section-title h1{
    margin-bottom: 0rem !important;
  }
  
  section .section-title h1::after {
    width: 11rem !important;
  }

  .outcomes-section .section-title h1::after {
    width: 8rem !important;
  }

  .approaches-section .section-title h1::after {
    width: 11rem !important;
  }

  .values-section .section-title h1::after {
    width: 11rem !important;
  }

  .divider-box {
    width: 100%;
    max-width: 32rem;
    height: auto;
    min-height: 18rem;
    margin: 0 auto;
    padding: 2rem 3rem 3rem;
    cursor: default;
    position: relative;
    text-align: center;
  }

  .box-small-text {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    display: inline;
    margin-right: 0.5rem;
  }

  .box-big-text {
    font-size: 6.5rem;
    margin-bottom: 1rem;
    display: inline;
  }

  .description {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    font-size: 1.6rem;
    background-color: transparent;
    color: #f2efea;
    padding: 1.5rem;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    text-align: center;
  }

  .vision-desc {
    background-color: transparent;
    border: none;
  }

  .mission-desc {
    background-color: transparent;
    border: none;
  }

  .divider-box:hover .description {
    bottom: auto;
    opacity: 1;
    visibility: visible;
  }

  .divider-box:hover {
    background-color: #C74A9B;
  }

  .right-box:hover {
    background-color: #436E55;
  }

  .goals-section,
  .outcomes-section,
  .approaches-section,
  .values-section,
  .vision-change-section {
    padding: 5rem var(--spacer-sm);
  }

  .goal-list {
    gap: 0;
  }

  .goal-item {
    height: auto;
    min-height: 14rem;
    padding: 2rem 1.5rem;
    flex-direction: row;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin: 1rem auto;
  }

  .goal-number {
    font-size: 5.5rem;
  }

  .goal-item p {
    font-size: 1.6rem;
    text-align: center;
    display: block;
    -webkit-line-clamp: none;
    line-height: 1.3;
 
  }

  .outcomes-wrapper {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2.5rem;
    width: 100%;
    margin: 0 auto;
  }

  .outcomes-list {
    flex: 1;
  }

  .outcomes-list li {
    max-width: 100%;
    font-size: 1.6rem;
    margin: 0;
  }

  .outcomes-image {
    margin-top: 0;
    margin-bottom: 0;
  }

  .outcomes-image img {
    max-width: 80%;
    width: 80%;
    object-fit: contain;
    margin: auto !important;
  }

  .approach-list {
    grid-template-columns: 1fr;
    gap: 11rem;
  }

  .approach-card {
    padding: 6rem 2rem 3rem;
    max-width: 35rem;
    margin: 0 auto;
  }

  .values-grid {
    display: none;
  }

  .values-flex {
    display: flex;
    margin-top: 2.5rem;
  }

  .value-card {
    padding: 2.5rem 2rem;
  }

  .value-card-title {
    font-size: 3rem;
    margin-bottom: 1.2rem;
  }

  .value-card-description {
    font-size: 1.5rem;
  }

  .vision-content {
    max-width: 95%;
  }

  .vision-content h3 {
    font-size: 2.6rem;
  }

  .vision-content p,
  .vision-list li {
    font-size: 1.6rem;
  }

  .learn-more-btn {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}

/* Mobile Medium and Small (up to 599px) */
@media (max-width: 599px) {
  .hero-section {
    height: 28rem;
  }

  .section-title h1 {
    font-size: 2.4rem;
  }

  .section-divider {
    gap: 5rem;
    top: -6rem;
    padding: 0 1rem;
    position: relative;
  }

  .divider-box {
    width: 100%;
    max-width: 28rem;
    height: auto;
    min-height: 16rem;
    margin: 0 auto;
    padding: 2rem 2.5rem 3rem;
    cursor: default;
    text-align: center;
  }

  .box-small-text {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    display: inline;
    margin-right: 0.5rem;
  }

  .box-big-text {
    font-size: 5.5rem;
    margin-bottom: 1rem;
    display: inline;
  }

  .description {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    font-size: 1.5rem;
    background-color: transparent;
    color: #f2efea;
    padding: 1.2rem;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    text-align: center;
  }

  .divider-box:hover .description {
    bottom: auto;
  }

  .goals-section,
  .outcomes-section,
  .approaches-section,
  .values-section,
  .vision-change-section {
    padding: 4rem 1.5rem;
  }

  .goal-item {
    min-height: 12rem;
    padding: 1.8rem 2.5rem;
    gap: 1.5rem;
    max-width: 95%;
  }

  .goal-number {
    font-size: 5rem;
  }

  .goal-item p {
    font-size: 1rem;
  }

  .outcomes-wrapper {
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }

  .outcomes-list li {
    font-size: 1.5rem;
  }

  .outcomes-image img {
    max-width: 70%;
    width: 70%;
    object-fit: contain;
  }

  .approach-card {
    padding: 5.5rem 1.8rem 2.5rem;
    max-width: 32rem;
  }

  .approach-card img {
    width: 9rem;
    height: 9rem;
    top: -8rem;
  }

  .approach-card::before {
    width: 11rem;
    height: 11rem;
    top: -9rem;
  }

  .approach-card p {
    font-size: 1.5rem;
  }

  .values-flex {
    gap: 1.8rem;
  }

  .vision-content {
    max-width: 98%;
  }

  .vision-content h3 {
    font-size: 2.2rem;
  }

  .vision-content p,
  .vision-list li {
    font-size: 1.5rem;
  }

  .learn-more-btn {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}

/* Mobile Small (up to 479px) */
@media (max-width: 479px) {
  .hero-section {
    height: 24rem;
  }

  .section-title h1 {
    font-size: 2.2rem;
  }

  .section-divider {
    gap: 4rem;
    top: -5.5rem;
    padding: 0 0.8rem;
    position: relative;
  }

  .divider-box {
    width: 100%;
    max-width: 26rem;
    height: auto;
    min-height: 14rem;
    margin: 0 auto;
    padding: 1.8rem 2rem 2.5rem;
    cursor: default;
    text-align: center;
  }

  .box-small-text {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    display: inline;
    margin-right: 0.4rem;
  }

  .box-big-text {
    font-size: 4.8rem;
    margin-bottom: 0.8rem;
    display: inline;
  }

  .description {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 0.8rem;
    font-size: 1.3rem;
    background-color: transparent;
    color: #f2efea;
    padding: 1rem;
    margin-top: 0.8rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    text-align: center;
  }

  .divider-box:hover .description {
    bottom: auto;
  }

  .goals-section,
  .outcomes-section,
  .approaches-section,
  .values-section,
  .vision-change-section {
    padding: 0 0.2rem !important;
  }

  .goal-item {
    min-height: 11rem;
    padding: 1.5rem 2rem;
    gap: 1rem;
    max-width: 98%;
  }

  .goal-number {
    font-size: 3.5rem;
  }

  .goal-item p {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .outcomes-wrapper {
    padding: 2rem 1.2rem;
    gap: 1.8rem;
  }

  .outcomes-list li {
    font-size: 1.4rem;
  }

  .outcomes-image img {
    max-width: 65%;
    width: 65%;
    object-fit: contain;
  }

  .approach-card {
    padding: 5rem 1.5rem 2rem;
    max-width: 28rem;
  }

  .approach-card img {
    width: 8rem;
    height: 8rem;
    top: -7.5rem;
  }

  .approach-card::before {
    width: 10rem;
    height: 10rem;
    top: -8.5rem;
  }

  .approach-card p {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .values-flex {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .value-card {
    padding: 2rem 1.5rem;
  }

  .value-card-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .value-card-description {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .vision-content {
    max-width: 100%;
    padding: 1rem;
  }

  .vision-content h3 {
    font-size: 2rem;
  }

  .vision-content p,
  .vision-list li {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .learn-more-btn {
    font-size: 1.3rem;
    padding: 0.8rem 1.8rem;
  }
}

/* Mobile Extra Small (up to 359px) */
@media (max-width: 359px) {
  .hero-section {
    height: 20rem;
  }

  .section-title h1 {
    font-size: 2rem;
  }

  .section-title h1::after {
    width: 6rem;
  }

  .section-divider {
    gap: 3rem;
    top: -5rem;
    padding: 0 0.5rem;
    position: relative;
  }

  .divider-box {
    width: 100%;
    max-width: 24rem;
    height: auto;
    min-height: 12rem;
    margin: 0 auto;
    padding: 1.5rem 1.8rem 2rem;
    cursor: default;
    text-align: center;
  }

  .box-small-text {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    display: inline;
    margin-right: 0.3rem;
  }

  .box-big-text {
    font-size: 4.2rem;
    margin-bottom: 0.6rem;
    display: inline;
  }

  .description {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 0.6rem;
    font-size: 1.2rem;
    background-color: transparent;
    color: #f2efea;
    padding: 0.8rem;
    margin-top: 0.6rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    text-align: center;
  }

  .divider-box:hover .description {
    bottom: auto;
  }

  .goals-section,
  .outcomes-section,
  .approaches-section,
  .values-section,
  .vision-change-section {
    padding: 3rem 0.8rem;
  }

  .goal-item {
    min-height: 10rem;
    padding: 1.2rem 1.5rem;
    gap: 0.8rem;
    max-width: 100%;
  }

  .goal-number {
    font-size: 4rem;
  }

  .goal-item p {
    font-size: 1rem;
    line-height: 1.25;
  }

  .outcomes-wrapper {
    padding: 1.8rem 1rem;
    gap: 1.5rem;
  }

  .outcomes-list li {
    font-size: 1.3rem;
  }

  .outcomes-image img {
    max-width: 60%;
    width: 60%;
    object-fit: contain;
  }

  .approach-card {
    padding: 4.5rem 1.2rem 1.8rem;
    max-width: 26rem;
  }

  .approach-card img {
    width: 7rem;
    height: 7rem;
    top: -7rem;
  }

  .approach-card::before {
    width: 9rem;
    height: 9rem;
    top: -8rem;
  }

  .approach-card p {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .values-flex {
    gap: 1.2rem;
    margin-top: 1.8rem;
  }

  .value-card {
    padding: 1.8rem 1.2rem;
  }

  .value-card-title {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .value-card-description {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .vision-content {
    padding: 0.8rem;
  }

  .vision-content h3 {
    font-size: 1.8rem;
  }

  .vision-content p,
  .vision-list li {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .learn-more-btn {
    font-size: 1.2rem;
    padding: 0.7rem 1.5rem;
  }
}

/* ------------------------------------------
   Footer Social Icons Fix - Ensure Horizontal Layout
------------------------------------------ */
.footer_socials {
  display: flex !important;
  flex-direction: row !important;
  gap: 1rem !important;
  margin-bottom: 0.8rem !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.footer_socials picture {
  display: inline-block !important;
}

.footer_socials img {
  width: 45px !important;
  height: 45px !important;
  filter: brightness(0) invert(1) !important;
  transition: transform 0.3s ease !important;
  display: block !important;
}

.footer_socials img:hover {
  transform: scale(1.1) !important;
  cursor: pointer !important;
}

/* ------------------------------------------
   Large Screens / Zoomed Out View (1800px and up)
------------------------------------------ */
@media (min-width: 1400px) {
  .outcomes-wrapper {
    flex-wrap: nowrap;
    gap: 2rem;
  }

  .outcomes-list {
    flex: 1 1 50%;
    min-width: 400px;
    max-width: 55%;
  }
  .outcomes-list li{
    font-size: 2.4rem !important;
  }
  .outcomes-image {
    flex: 1 1 40%;
    min-width: 300px;
    max-width: 45%;
  }

  .outcomes-image img {
    max-width: 100%;
    width: 100%;
  }
}

/* ------------------------------------------
   Performance Optimizations
------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .divider-box,
  .description,
  .goal-item,
  .approach-card,
  .value-item,
  .value-card,
  .learn-more-btn {
    transition: none;
  }

  .divider-box:hover,
  .goal-item:hover,
  .approach-card:hover,
  .value-item:hover,
  .value-card:hover,
  .learn-more-btn:hover {
    transform: none;
  }
}

/* ------------------------------------------
   Print Styles
------------------------------------------ */
@media print {
  .hero-section {
    height: auto;
    background: none;
    page-break-inside: avoid;
  }

  .section-divider {
    position: static;
    flex-direction: row;
  }

  .divider-box {
    background: #f5f5f5 !important;
    color: #000 !important;
    border: 1px solid #ccc;
  }

  .description,
  .values-grid::before,
  .approach-card::before,
  .learn-more-btn {
    display: none;
  }
}

/* ------------------------------------------
   Annual Reports Section
------------------------------------------ */
#annual-reports {
  margin: var(--spacer-xl) 0;
  padding: 8rem var(--spacer-lg);
  background-color: transparent;
}

#annual-reports .section-title h1 {
  font-family: var(--font-secondary);
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  color: #C74A9B;
  position: relative;
  z-index: 1;
  margin-left: 5%;
  letter-spacing: 0.1rem;
  text-align: left;
  margin-bottom: 4rem;
}

#annual-reports .section-title h1::after {
  content: '';
  position: absolute;
  display: block;
  width: 25rem;
  height: 2px;
  background-color: #C74A9B;
  bottom: 1.2rem;
  left: 28rem;
}

.reports-vertical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 3rem;
  max-width: 120rem;
  margin: 0 auto;
  justify-items: center;
}

.report-card-vertical {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 35rem;
  background-color: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}

.report-card-vertical:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.report-thumbnail {
  width: 100%;
  height: 40rem;
  overflow: hidden;
  background-color: #f5f5f5;
  flex-shrink: 0;
}

.report-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.report-card-vertical:hover .report-thumbnail img {
  transform: scale(1.05);
}

.report-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
  text-align: center;
}

.report-content h3 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: #333;
  margin: 0;
  line-height: 1.2;
}

.download-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #C74A9B;
  color: white;
  text-decoration: none;
  border-radius: 0.4rem;
  font-weight: var(--font-weight-medium);
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #A03B82;
  color: white;
}

.financial-download-btn {
  background-color: #339A5E;
}

.financial-download-btn:hover {
  background-color: #2A7D4F;
  color: white;
}

/* Alternative Layout: Plain Hyperlinks */
.financial-statements-simple {
  max-width: 80rem;
  margin: 0 auto;
}

.statements-link-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.statements-link-list li {
  padding: 2rem;
  background-color: white;
  border-radius: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statements-link-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.statement-link {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: #339A5E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.statement-link:hover {
  color: #2A7D4F;
  text-decoration: underline;
}

/* ------------------------------------------
   Financial Statements Section
------------------------------------------ */
#financial-statements {
  margin: var(--spacer-xl) 0;
  padding: 8rem var(--spacer-lg);
  background-color: #f8f8f8;
}

#financial-statements .section-title h1 {
  font-family: var(--font-secondary);
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  color: #339A5E;
  position: relative;
  z-index: 1;
  margin-left: 5%;
  letter-spacing: 0.1rem;
  text-align: left;
  margin-bottom: 4rem;
}

#financial-statements .section-title h1::after {
  content: '';
  position: absolute;
  display: block;
  width: 25rem;
  height: 2px;
  background-color: #339A5E;
  bottom: 1.2rem;
  left: 38rem;
}

.financial-statements-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

.statement-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background-color: white;
  border-radius: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statement-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.statement-info {
  flex: 1;
}

.statement-info h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: #333;
  margin: 0;
}

/* ------------------------------------------
   Responsive Design for New Sections
------------------------------------------ */
@media (max-width: 1023px) and (min-width: 727px) {
  #annual-reports .section-title h1,
  #financial-statements .section-title h1 {
    font-size: 3.2rem;
    text-align: center;
    margin-left: 0;
  }

  #annual-reports .section-title h1::after {
    left: 50%;
    transform: translateX(-50%);
    width: 18rem;
  }

  #financial-statements .section-title h1::after {
    left: 50%;
    transform: translateX(-50%);
    width: 22rem;
  }
}

@media (max-width: 726px) {
  #annual-reports,
  #financial-statements {
    padding: 4rem 1.5rem;
  }

  #annual-reports .section-title h1,
  #financial-statements .section-title h1 {
    font-size: 2.8rem;
  }

  #annual-reports .section-title h1::after,
  #financial-statements .section-title h1::after {
    width: 12rem !important;
  }

  .reports-vertical-grid {
    grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
    gap: 2.5rem;
  }

  .report-card-vertical {
    max-width: 32rem;
  }

  .report-thumbnail {
    height: 35rem;
  }

  .report-content {
    padding: 2rem 1.5rem;
  }

  .report-content h3 {
    font-size: 2.2rem;
  }

  .statement-item {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 599px) {
  #annual-reports .section-title h1,
  #financial-statements .section-title h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 479px) {
  #annual-reports .section-title h1,
  #financial-statements .section-title h1 {
    font-size: 2.2rem;
  }

  .reports-vertical-grid {
    grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
    gap: 2rem;
  }

  .report-card-vertical {
    max-width: 28rem;
  }

  .report-thumbnail {
    height: 30rem;
  }

  .report-content {
    padding: 1.8rem 1.5rem;
  }

  .report-content h3 {
    font-size: 2rem;
  }

  .statement-item {
    padding: 1.5rem;
  }
}

@media (max-width: 359px) {
  #annual-reports .section-title h1,
  #financial-statements .section-title h1 {
    font-size: 2rem;
  }

  #annual-reports .section-title h1::after,
  #financial-statements .section-title h1::after {
    width: 8rem;
  }

  .reports-vertical-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .report-card-vertical {
    max-width: 100%;
  }

  .report-thumbnail {
    height: 25rem;
  }

  .report-content {
    padding: 1.5rem 1rem;
  }

  .report-content h3 {
    font-size: 1.8rem;
  }
}