/* Global Reset for Overflow Issues */
* {
  box-sizing: border-box;
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  .timeline-container {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    margin: 0 auto 56px !important;
    padding: 48px 24px !important;
    box-sizing: border-box !important;
  }

  .timeline-text {
    position: relative !important;
    width: 100% !important;
    max-width: 240px !important;
    margin: 0 auto 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .timeline-text span {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }

  .dots-container {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 28px auto !important;
    padding: 0 16px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 16px !important;
  }

  .dot-year-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 52px !important;
  }

  .year-text {
    font-size: 13px !important;
  }

  .dot {
    width: 12px !important;
    height: 12px !important;
  }

  .timeline-line {
    position: relative !important;
    width: 100% !important;
    height: 2px !important;
    margin: 12px auto 0 !important;
    background: rgba(177, 151, 77, 0.3) !important;
  }

  .timeline-content-sections {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    margin-top: 36px !important;
  }

  .timeline-image-section {
    width: 100% !important;
  }

  .timeline-image-section .timeline-image,
  .timeline-image-container img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 14px !important;
  }

  .timeline-text-section {
    padding: 22px !important;
    border-radius: 14px !important;
  }
}

html {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  min-height: 100%;
}

.timeline-content-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  width: 100%;
}

/* Theme tokens — variables used by .about-us-page (must match light/dark XML branches) */
.about-us-page.light-theme {
  --bg-primary: #ffffff;
  --text-primary: #000000;
  --text-container-bg: #ffffff;
  --text-container-heading: #000000;
  --timeline-description-color: #2d2e2e;
  --our-vision-color: #000000;
  --vision-description-color: #2d2e2e;
  --our-mission-color: #000000;
  --mission-description-color: #2d2e2e;
  background-color: #ffffff !important;
  color: #000000;
}

.about-us-page.dark-theme {
  --bg-primary: #000000;
  --text-primary: #ffffff;
  --text-container-bg: #161616;
  --text-container-heading: #ffffff;
  --timeline-description-color: #ffffff;
  --our-vision-color: #ffffff;
  --vision-description-color: #ffffff;
  --our-mission-color: #ffffff;
  --mission-description-color: #ffffff;
}

body:has(.about-us-page.light-theme),
#wrapwrap:has(.about-us-page.light-theme),
#wrap:has(.about-us-page.light-theme) {
  background-color: #ffffff !important;
}

body:has(.about-us-page.dark-theme),
#wrapwrap:has(.about-us-page.dark-theme),
#wrap:has(.about-us-page.dark-theme) {
  background-color: #000000 !important;
}

/* About Us Page Container */
.about-us-page {
  position: relative;
  width: 100%;
  max-width: 100vw;
  /* Collapsed vertical space after removing KPM numbers + interactive timeline */
  /* Pull up legacy story + vision + mission; cap so second section stays below hero image
     (hero main image bottom ≈ 207+675=882px; 1443-500=943 leaves ~61px gap) */
  --about-strip-after-hero: min(500px, calc(100vw * 0.289351851851852));
  --about-strip-footer-stack: min(1620px, calc(100vw * 0.9375));
  /* Space between Our Mission block and patterned footer / commitment stack */
  --about-gap-after-mission: clamp(72px, 10vw, 140px);
  min-height: 3960px;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  overflow-y: visible;
}

/* Responsive page height adjustments (desktop absolute layout only) */
@media screen and (min-width: 1201px) and (max-width: 1728px) {
  .about-us-page {
    /* Match commitment block bottom + footer; avoids extra blank area below hero */
    min-height: calc(
      min(calc(100vw * 2.7424), 4739px) + min(calc(100vw * 1.08), 880px) + 160px - var(--about-strip-footer-stack) + var(--about-gap-after-mission)
    );
  }
}

@media screen and (min-width: 1201px) and (max-width: 1440px) {
  .about-us-page {
    min-height: 3206px;
  }
}

@media screen and (max-width: 1200px) {
  .about-us-page {
    min-height: auto;
  }
}

@media screen and (max-width: 992px) {
  .about-us-page {
    min-height: 3960px;
  }
}

@media screen and (max-width: 768px) {
  .about-us-page {
    min-height: 3260px;
  }
}

@media screen and (max-width: 480px) {
  .about-us-page {
    min-height: 2660px;
  }
}

@media screen and (max-width: 375px) {
  .about-us-page {
    min-height: 2460px;
  }
}

/* About Section */
.about-section {
  position: relative;
  width: 100%;
  max-width: 1728px;
  height: 720px;
  margin: 0 auto;
  overflow: visible;
  background: transparent;
  display: block;
  box-sizing: border-box;
}

/* SVG Container */
.svg-container {
  position: absolute;
  top: 297px;
  left: 0;
  width: 100%;
  max-width: 1728px;
  height: 720px;
  opacity: 1;
  transform: rotate(0deg);
  gap: 4px;
  z-index: 1;
}

.footer-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(0deg);
}

/* Main Image Container */
.main-image-container {
  position: absolute;
  top: 207px;
  left: 532px;
  width: 1200px;
  height: 675px;
  opacity: 1;
  transform: rotate(0deg);
  z-index: 2;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(0deg);
}

/* Text Container */
.text-container {
  position: absolute;
  top: 339px;
  left: 137px;
  width: 720px;
  max-width: calc(100vw - 64px);
  height: auto;
  min-height: 360px;
  opacity: 1;
  transform: rotate(0deg);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: var(--text-container-bg);
  box-sizing: border-box;
  transition: background-color 0.3s ease;
  border-radius: 16px;
  padding: 48px 40px;
}

.text-label {
  position: static;
  width: auto;
  height: auto;
  opacity: 1;
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: 0%;
  color: #BA9C44;
  display: block;
}

.text-heading {
  position: static;
  width: 100%;
  height: auto;
  max-height: none;
  opacity: 1;
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--text-container-heading);
  transition: color 0.3s ease;
  display: block;
  white-space: normal;
  overflow: visible;
}

/* Timeline Statistics Sections */
.timeline-number-sections {
  position: absolute;
  width: 1430px;
  height: 195px;
  top: calc(720px + 290px);
  left: 149px;
  opacity: 1;
  transform: rotate(0deg);
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1430px;
  box-sizing: border-box;
}

.timeline-number-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  min-width: 0;
}

.timeline-svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-svg svg {
  width: 36px;
  height: 36px;
}

.timeline-text-primary {
  font-family: 'Nexa-Bold', 'Nexa', sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 5px;
  width: 218px;
  height: 97px;
}

.timeline-text-secondary {
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--text-primary);
  line-height: 1.4;
  /* text-align: center; */
  word-wrap: break-word;
  width: 265px;
  height: 90px;
}

/* Timeline Image Container */
.timeline-image-container {
  position: absolute;
  width: 930px;
  height: 676px;
  top: calc(1443px - var(--about-strip-after-hero));
  left: 0;
  opacity: 1;
  transform: rotate(0deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Timeline Text Span */
.timeline-text-span {
  position: absolute;
  width: 640px;
  height: auto;
  max-height: none;
  top: calc(1500px - var(--about-strip-after-hero));
  left: 990px;
  opacity: 1;
  transform: rotate(0deg);
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #B1974D;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Timeline Description Span */
.timeline-description-span {
  position: absolute;
  width: 577px;
  height: auto;
  top: calc(1781px - var(--about-strip-after-hero));
  left: 990px;
  opacity: 1;
  transform: rotate(0deg);
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: 0%;
  color: var(--timeline-description-color);
  display: block;
  text-align: left;
  transition: color 0.3s ease;
}

/* Timeline Button */
.timeline-button {
  position: absolute;
  width: 181px;
  height: 60px;
  top: calc(2080px - var(--about-strip-after-hero));
  left: 990px;
  opacity: 1;
  transform: rotate(0deg);
  background: #B1974D;
  border: none;
  padding: 10px 20px;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.timeline-button:hover {
  background: #9a7f3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(177, 151, 77, 0.3);
}

.timeline-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(177, 151, 77, 0.2);
}

.timeline-button-text {
  width: 107px;
  height: 40px;
  opacity: 1;
  transform: rotate(0deg);
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0%;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Our Vision Span */
.our-vision-span {
  position: absolute;
  width: 489px;
  height: 40px;
  top: calc(2369px - var(--about-strip-after-hero));
  left: 215px;
  opacity: 1;
  transform: rotate(0deg);
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0%;
  color: var(--our-vision-color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  transition: color 0.3s ease;
}

/* Vision Description Span */
.vision-description-span {
  position: absolute;
  width: 489px;
  height: 280px;
  top: calc(2447px - var(--about-strip-after-hero));
  left: 215px;
  opacity: 1;
  transform: rotate(0deg);
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  color: var(--vision-description-color);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  transition: color 0.3s ease;
}

/* Vision Images */
.vision-image-container-1 {
  position: absolute;
  width: 341px;
  height: 385px;
  top: calc(2432px - var(--about-strip-after-hero));
  left: 980px;
  opacity: 1;
  z-index: 2;
  transform: rotate(0deg);
}

.vision-image-1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-image-container-2 {
  position: absolute;
  width: 341px;
  height: 385px;
  top: calc(2327px - var(--about-strip-after-hero));
  left: 834px;
  opacity: 1;
  transform: rotate(0deg);
}

.vision-image-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-image-container-3 {
  position: absolute;
  width: 341px;
  height: 385px;
  top: calc(2274px - var(--about-strip-after-hero));
  left: 1213px;
  opacity: 1;
  transform: rotate(0deg);
}

.vision-image-3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-image-container-4 {
  position: absolute;
  width: 341px;
  height: 385px;
  top: calc(3035px - var(--about-strip-after-hero));
  left: 215px;
  opacity: 1;
  z-index: 3;
  transform: rotate(0deg);
}

.vision-image-4 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-image-container-single {
  position: absolute;
  width: 620px;
  height: auto;
  aspect-ratio: 16 / 9;
  top: calc(2327px - var(--about-strip-after-hero));
  left: 834px;
  opacity: 1;
  z-index: 2;
  transform: rotate(0deg);
  overflow: hidden;
}

.vision-image-single {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Our Mission Span */
.our-mission-span {
  position: absolute;
  width: 489px;
  height: 40px;
  top: calc(3057px - var(--about-strip-after-hero));
  left: 644px;
  opacity: 1;
  transform: rotate(0deg);
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0%;
  color: var(--our-mission-color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  transition: color 0.3s ease;
}

/* Mission Description Span */
.mission-description-span {
  position: absolute;
  width: 828px;
  height: 240px;
  top: calc(3135px - var(--about-strip-after-hero));
  left: 644px;
  opacity: 1;
  z-index: 3;
  transform: rotate(0deg);
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  color: var(--mission-description-color);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  transition: color 0.3s ease;
}

/* Timeline Container */
.timeline-container {
  width: 100%;
  max-width: 1558.4000244140625px;
  height: 750px;
  top: 3612px;
  left: 85px;
  right: 85px;
  opacity: 1;
  transform: rotate(0deg);
  position: absolute;
  border-width: 1px;
  /* background: var(--bg-secondary); */
  box-sizing: border-box;
}

/* Timeline Text */
.timeline-text {
  width: 208px;
  height: 41px;
  opacity: 1;
  transform: rotate(0deg);
  position: relative;
  margin: 67px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nexa-Bold', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
  color: #BA9C44;
}

.timeline-text span {
  font-family: 'Nexa-Bold', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
  color: #BA9C44;
}

/* Dots Container */
.dots-container {
  width: 100%;
  max-width: 1244px;
  height: 56px;
  opacity: 1;
  transform: rotate(0deg);
  position: relative;
  margin: 40px auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  z-index: 10;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Dot Year Item */
.dot-year-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 11;
  position: relative;
  padding: 10px;
  min-width: 60px;
}

.dot-year-item:hover {
  transform: translateY(-2px);
  background: rgba(186, 156, 68, 0.1);
  border-radius: 8px;
}

.dot-year-item:hover .dot {
  transform: scale(1.1);
}

.dot-year-item:hover .year-text {
  color: var(--accent-color);
}

/* Dots */
.dot {
  width: 5px;
  height: 5px;
  opacity: 1;
  transform: rotate(0deg);
  background: #BA9C44;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dot.active {
  width: 12px;
  height: 12px;
  background: #BA9C44;
  transform: scale(1.2);
}

/* Year Text */
.year-text {
  width: 48px;
  height: 22px;
  opacity: 1;
  transform: rotate(0deg);
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.year-text.active {
  width: 79px;
  height: 41px;
  opacity: 1;
  transform: rotate(0deg);
  font-family: 'Nexa-Bold', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Timeline Line */
.timeline-line {
  width: 100%;
  max-width: 1555px;
  height: 0px;
  opacity: 1;
  transform: rotate(-0deg);
  position: relative;
  margin: 40px auto 0;
  border: 1px dashed #BA9C44;
  border-style: dashed;
  border-width: 1px;
}

/* Timeline Content Sections */
.timeline-content-sections {
  position: relative;
  width: 100%;
  height: auto;
  margin: 40px auto 0;
  max-width: 1558px;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.timeline-image {
  transition: opacity 0.5s ease-in-out;
}

.timeline-text-section span {
  transition: opacity 0.5s ease-in-out;
}

/* Timeline Image Section */
.timeline-image-section {
  width: 100%;
  max-width: 880px;
  height: 495px;
  opacity: 1;
  transform: rotate(0deg);
  position: relative;
  margin: 0 auto;
}

.timeline-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Timeline Text Section */
.timeline-text-section {
  width: 100%;
  max-width: 673px;
  height: 495px;
  opacity: 1;
  transform: rotate(0deg);
  position: relative;
  margin: 0 auto;
  /* background: #161616; */
  padding: 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.timeline-text-section .timeline-text-primary {
  width: 100%;
  min-height: 79px;
  opacity: 1;
  transform: rotate(0deg);
  position: relative;
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.timeline-text-section .timeline-text-title {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 18px;
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #B1974D;
  display: block;
}

.timeline-text-section .timeline-text-secondary {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  height: auto;
  opacity: 1;
  transform: rotate(0deg);
  position: relative;
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0%;
  color: var(--text-primary);
  display: block;
  text-align: center;
}

/* KPM SVG Footer — top is max(legacy layout, bottom of mission stack + gap) so narrow viewports cannot overlap */
.kpm-svg-footer {
  width: 100% !important;
  max-width: 1620px !important;
  height: 720px !important;
  top: max(
    calc(4500px - var(--about-strip-footer-stack) + var(--about-gap-after-mission)),
    calc(3420px - var(--about-strip-after-hero) + var(--about-gap-after-mission))
  ) !important;
  left: 0 !important;
  opacity: 1 !important;
  transform: rotate(0deg) !important;
  position: absolute !important;
  background: transparent !important;
  box-sizing: border-box !important;
  z-index: 0;
}

.kpm-svg-footer img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* New Image After Footer */
.new-image-after-footer {
  width: 100% !important;
  max-width: none !important;
  height: 758px !important;
  top: max(
    calc(4739px - var(--about-strip-footer-stack) + var(--about-gap-after-mission)),
    calc(3420px - var(--about-strip-after-hero) + 239px + var(--about-gap-after-mission))
  ) !important;
  left: 0 !important;
  right: 0 !important;
  opacity: 1 !important;
  position: absolute !important;
  background: #000000 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  z-index: 0;
}

.new-image-after-footer img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Text Elements in New Image After Footer */
.commitment-text {
  position: absolute;
  width: 619px !important;
  height: 158px !important;
  top: 194px !important;
  left: 172px !important;
  opacity: 1 !important;
  font-family: 'NexaRegular', 'Nexa', sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 64px !important;
  line-height: 100% !important;
  letter-spacing: 0% !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  z-index: 10 !important;
}

.hello-text {
  position: absolute;
  width: 607px !important;
  height: auto !important;
  max-height: none !important;
  top: 405px !important;
  left: 172px !important;
  opacity: 1 !important;
  font-family: 'NexaRegular', 'Nexa', sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 24px !important;
  line-height: 1.65 !important;
  letter-spacing: 0% !important;
  color: #FFFFFF !important;
  display: block !important;
  text-align: left !important;
  z-index: 10 !important;
}

/* Button After Text */
.commitment-button {
  position: absolute;
  width: 166px !important;
  height: 60px !important;
  top: auto !important;
  bottom: 72px !important;
  left: 171px !important;
  opacity: 1 !important;
  gap: 10px !important;
  padding: 10px 30px !important;
  border-radius: 5px !important;
  background: #B1974D !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
}

.commitment-button:hover {
  background: #9a7f3f !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(177, 151, 77, 0.3) !important;
}

.commitment-button:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 6px rgba(177, 151, 77, 0.2) !important;
}

.commitment-button-text {
  font-family: 'NexaRegular', 'Nexa', sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 20px !important;
  line-height: 40px !important;
  letter-spacing: 0% !important;
  color: #000000 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

/* Global Site Footer container - positioned after final section */
.KPM_WEBSITE_FOOTER {
  position: absolute;
  width: 100%;
  height: auto;
  min-height: 0;
  left: 0;
  top: max(
    calc(5450px - var(--about-strip-footer-stack) + var(--about-gap-after-mission)),
    calc(3420px - var(--about-strip-after-hero) + 239px + 758px + var(--about-gap-after-mission))
  );
  box-sizing: border-box;
  color: var(--text-primary);
  background: var(--bg-primary);
  z-index: 0;
}

.KPM_WEBSITE_FOOTER .kpm-text-container div,
.KPM_WEBSITE_FOOTER .kpm-footer-desc,
.KPM_WEBSITE_FOOTER .kpm-first-flag-number,
.KPM_WEBSITE_FOOTER .kpm-second-flag-number,
.KPM_WEBSITE_FOOTER .kpm-third-flag-number,
.KPM_WEBSITE_FOOTER .kpm-fourth-flag-number {
  color: var(--text-primary);
}

.KPM_WEBSITE_FOOTER .kpm-footer-line {
  width: 90%;
  height: 1px;
  background: #585857;
  opacity: 1;
}

.KPM_WEBSITE_FOOTER .kpm-footer-desc span {
  color: var(--text-primary);
}

/* Remove extra space: decorative layout SVG should not occupy flow space */
img.kpm-svg-layout {
  display: none;
}

@media screen and (max-width: 1200px) {
  .KPM_WEBSITE_FOOTER {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    height: auto;
    margin-top: 50px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .kpm-flags-div {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px !important;
    padding: 20px !important;
    justify-items: center;
    order: 1;
  }

  .kpm-first-flag-block,
  .kpm-second-flag-block,
  .kpm-third-flag-block,
  .kpm-fourth-flag-block {
    width: 100% !important;
    max-width: 240px !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px 14px;
    background: rgba(177, 151, 77, 0.12);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
  }

  .kpm-social-media-icons {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: max-content !important;
    height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 0 !important;
    margin: 0 auto !important;
    align-self: center !important;
    float: none !important;
    order: 2;
  }

  .kpm-linkedin-icon,
  .kpm-twitter-icon,
  .kpm-facebook-icon,
  .kpm-instagram-icon {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(177, 151, 77);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .kpm-linkedin-icon:hover,
  .kpm-twitter-icon:hover,
  .kpm-facebook-icon:hover,
  .kpm-instagram-icon:hover {
    background: rgba(177, 151, 77, 0.3);
    transform: scale(1.1);
  }

  .kpm-social-media-icons img {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .kpm-footer-desc2 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    text-align: center;
    padding: 0 20px 12px 20px !important;
    font-size: 14px;
    order: 3;
  }

  .kpm-footer-line {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    margin: 0 auto !important;
    order: 4;
  }

  .kpm-footer-desc {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    padding: 10px 24px !important;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    white-space: normal !important;
    order: 5;
  }

  .kpm-footer-desc span {
    display: block !important;
    white-space: normal !important;
  }
}

/* About Us footer — center social icons on mobile & tablet */
@media screen and (max-width: 1024px) {
  .about-us-page .KPM_WEBSITE_FOOTER .kpm-social-media-icons,
  .KPM_WEBSITE_FOOTER .kpm-social-media-icons {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    align-self: center !important;
    gap: 15px !important;
    float: none !important;
    line-height: normal !important;
    padding: 0 !important;
  }

  .about-us-page .KPM_WEBSITE_FOOTER .kpm-social-media-icons > div,
  .KPM_WEBSITE_FOOTER .kpm-social-media-icons > div {
    float: none !important;
    margin: 0 !important;
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    overflow: hidden !important;
  }

  .about-us-page .KPM_WEBSITE_FOOTER .kpm-social-media-icons > div a,
  .KPM_WEBSITE_FOOTER .kpm-social-media-icons > div a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
  }

  .about-us-page .KPM_WEBSITE_FOOTER .kpm-social-media-icons img,
  .KPM_WEBSITE_FOOTER .kpm-social-media-icons img {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
  }

  .about-us-page .KPM_WEBSITE_FOOTER .kpm-footer-desc2,
  .KPM_WEBSITE_FOOTER .kpm-footer-desc2 {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin: 12px auto 0 !important;
    position: relative !important;
    padding: 0 16px !important;
  }
}

@media screen and (max-width: 768px) {
  .KPM_WEBSITE_FOOTER {
    padding: 26px 16px !important;
    gap: 18px;
  }

  .kpm-flags-div {
    gap: 16px 18px !important;
  }

  .kpm-first-flag-block,
  .kpm-second-flag-block,
  .kpm-third-flag-block,
  .kpm-fourth-flag-block {
    max-width: 210px !important;
    padding: 14px 12px;
  }

  .kpm-social-media-icons {
    gap: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    align-self: center !important;
    justify-content: center !important;
  }

  .kpm-footer-desc2 {
    font-size: 14px;
  }

  .kpm-footer-desc {
    font-size: 12px;
    padding-left: 0 !important;
    text-align: center !important;
  }
}

@media screen and (max-width: 480px) {
  .KPM_WEBSITE_FOOTER {
    padding: 24px 14px !important;
  }

  .kpm-flags-div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px !important;
    padding: 18px 12px !important;
  }

  .kpm-first-flag-block,
  .kpm-second-flag-block,
  .kpm-third-flag-block,
  .kpm-fourth-flag-block {
    max-width: 100% !important;
    justify-content: center;
    padding: 12px 10px;
    gap: 10px;
  }

  .kpm-social-media-icons {
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    align-self: center !important;
    justify-content: center !important;
  }

  .kpm-social-media-icons > div {
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    margin: 0 !important;
  }

  .kpm-social-media-icons img {
    width: 20px;
    height: 20px;
  }

  .kpm-footer-desc2 {
    font-size: 13px;
  }

  .kpm-footer-desc {
    font-size: 11px;
    padding-left: 0 !important;
    text-align: center !important;
  }
}

/* Navigation Responsive Styles */
@media screen and (max-width: 1440px) {
  .kpm-nav {
    padding: 15px 0 !important;
  }

  .kpm-nav__tabs a {
    font-size: 14px !important;
    padding: 8px 12px !important;
  }

  .kpm-nav__logo img {
    max-width: 120px;
  }
}

@media screen and (max-width: 992px) {
  .kpm-nav {
    flex-wrap: wrap !important;
    padding: 10px 0 !important;
  }

  .kpm-nav__tabs {
    order: 3;
    width: 100%;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-top: 10px;
  }

  .kpm-nav__tabs a {
    font-size: 13px !important;
    padding: 6px 10px !important;
  }

  .kpm-nav__logo img {
    max-width: 100px;
  }

  .kpm-nav__icons {
    gap: 8px !important;
  }

  .kpm-icon img {
    width: 18px !important;
    height: 18px !important;
  }
}

@media screen and (max-width: 768px) {
  .kpm-nav {
    padding: 8px 0 !important;
  }

  .kpm-nav__tabs a {
    font-size: 12px !important;
    padding: 5px 8px !important;
  }

  .kpm-nav__logo {
    margin: 0 15px !important;
  }

  .kpm-nav__logo img {
    max-width: 90px;
  }

  .kpm-nav__icons {
    margin: 0 15px !important;
    gap: 6px !important;
  }

  .kpm-icon img {
    width: 16px !important;
    height: 16px !important;
  }
}

@media screen and (max-width: 480px) {
  .kpm-nav {
    padding: 8px 0 !important;
    justify-content: space-between !important;
  }

  .kpm-nav__tabs {
    margin-top: 8px;
    gap: 4px !important;
  }

  .kpm-nav__tabs a {
    font-size: 11px !important;
    padding: 4px 6px !important;
  }

  .kpm-nav__logo {
    margin: 0 10px !important;
  }

  .kpm-nav__logo img {
    max-width: 80px;
  }

  .kpm-nav__icons {
    margin: 0 10px !important;
    gap: 5px !important;
  }

  .kpm-icon img {
    width: 14px !important;
    height: 14px !important;
  }

  .ui-switch {
    transform: scale(0.8);
  }
}

/* Responsive Design - Following Home Page Logic (desktop absolute layout only) */
@media screen and (min-width: 1201px) and (max-width: 1728px) {
  .about-section {
    width: 100%;
    height: calc(100vw * 0.4167);
    max-height: 720px;
  }

  .svg-container {
    width: 100%;
    height: calc(100vw * 0.3744);
    max-height: 647px;
    top: min(calc(100vw * 0.1719), 297px);
    left: 0;
  }

  .main-image-container {
    width: calc(100vw * 0.6944);
    max-width: 1200px;
    height: calc(100vw * 0.3906);
    max-height: 675px;
    top: min(calc(100vw * 0.1198), 207px);
    left: min(calc(100vw * 0.3079), 532px);
  }

  .text-container {
    width: calc(100vw * 0.3565);
    max-width: 616px;
    height: calc(100vw * 0.2049);
    max-height: 354px;
    top: min(calc(100vw * 0.1962), 339px);
    left: min(calc(100vw * 0.0793), 137px);
    background: var(--text-container-bg);
  }

  .text-heading {
    font-size: clamp(32px, calc(100vw * 0.0370), 64px);
  }

  .text-label {
    font-size: clamp(16px, calc(100vw * 0.0139), 24px);
  }

  .timeline-number-sections {
    width: calc(100vw * 0.8275);
    max-width: 1430px;
    height: calc(100vw * 0.1128);
    max-height: 195px;
    top: calc(100vw * 0.4167 + 290px);
    left: min(calc(100vw * 0.0862), 149px);
  }

  .timeline-text-primary {
    font-size: clamp(48px, calc(100vw * 0.0370), 64px);
    width: calc(100vw * 0.1262);
    max-width: 218px;
    height: calc(100vw * 0.0561);
    max-height: 97px;
  }

  .timeline-text-secondary {
    font-size: clamp(18px, calc(100vw * 0.0139), 24px);
    width: calc(100vw * 0.1534);
    max-width: 360px;
    height: calc(100vw * 0.0521);
    max-height: 90px;
  }

  .timeline-image-container {
    width: calc(100vw * 0.54);
    max-width: 930px;
    height: calc(100vw * 0.3912);
    max-height: 676px;
    top: calc(100vw * 0.8351 + 40px - var(--about-strip-after-hero));
    left: 0;
  }

  .timeline-text-span {
    width: calc(100vw * 0.48);
    max-width: 640px;
    height: auto;
    max-height: none;
    top: calc(100vw * 0.8681 + 40px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.5729), 990px);
    font-size: clamp(32px, calc(100vw * 0.037), 64px);
    line-height: 1.2;
  }

  .timeline-description-span {
    width: calc(100vw * 0.3339);
    max-width: 577px;
    height: auto;
    max-height: none;
    line-height: 1.65;
    display: block;
    top: calc(100vw * 1.0307 + 40px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.5729), 990px);
    font-size: clamp(14px, calc(100vw * 0.0116), 20px);
  }

  .timeline-button {
    width: calc(100vw * 0.1047);
    max-width: 181px;
    height: calc(100vw * 0.0347);
    max-height: 60px;
    top: calc(100vw * 1.1279 + 160px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.5729), 990px);
    padding: calc(100vw * 0.0058) calc(100vw * 0.0116);
    gap: calc(100vw * 0.0058);
  }

  .timeline-button-text {
    width: calc(100vw * 0.0619);
    max-width: 107px;
    height: calc(100vw * 0.0231);
    max-height: 40px;
    font-size: clamp(16px, calc(100vw * 0.0116), 20px);
    line-height: calc(100vw * 0.0231);
  }

  .our-vision-span {
    width: calc(100vw * 0.2830);
    max-width: 489px;
    height: calc(100vw * 0.0231);
    max-height: 40px;
    top: calc(100vw * 1.3709 + 40px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.1244), 215px);
    font-size: clamp(16px, calc(100vw * 0.0116), 20px);
    line-height: calc(100vw * 0.0231);
  }

  .vision-description-span {
    width: calc(100vw * 0.2830);
    max-width: 489px;
    height: calc(100vw * 0.1620);
    max-height: 280px;
    top: calc(100vw * 1.4161 + 40px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.1244), 215px);
    font-size: clamp(24px, calc(100vw * 0.0185), 32px);
    line-height: calc(100vw * 0.0231);
  }

  .vision-image-container-1 {
    width: calc(100vw * 0.1973);
    max-width: 341px;
    height: calc(100vw * 0.2228);
    max-height: 385px;
    top: calc(100vw * 1.4074 + 40px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.5671), 980px);
  }

  .vision-image-container-2 {
    width: calc(100vw * 0.1973);
    max-width: 341px;
    height: calc(100vw * 0.2228);
    max-height: 385px;
    top: calc(100vw * 1.3466 + 40px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.4826), 834px);
  }

  .vision-image-container-3 {
    width: calc(100vw * 0.1973);
    max-width: 341px;
    height: calc(100vw * 0.2228);
    max-height: 385px;
    top: calc(100vw * 1.3154 + 40px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.7020), 1213px);
  }

  .vision-image-container-4 {
    width: calc(100vw * 0.1973);
    max-width: 341px;
    height: calc(100vw * 0.2228);
    max-height: 385px;
    top: calc(100vw * 1.7564 + 40px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.1244), 215px);
  }

  .our-mission-span {
    width: calc(100vw * 0.2830);
    max-width: 489px;
    height: calc(100vw * 0.0231);
    max-height: 40px;
    top: calc(100vw * 1.7688 + 40px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.3727), 644px);
    font-size: clamp(16px, calc(100vw * 0.0116), 20px);
    line-height: calc(100vw * 0.0231);
  }

  .mission-description-span {
    width: calc(100vw * 0.4792);
    max-width: 828px;
    height: calc(100vw * 0.1389);
    max-height: 240px;
    top: calc(100vw * 1.8142 + 40px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.3727), 644px);
    font-size: clamp(24px, calc(100vw * 0.0185), 32px);
    line-height: calc(100vw * 0.0231);
  }

  .timeline-container {
    width: min(calc(100vw * 0.9019), 1558.4000244140625px);
    height: min(calc(100vw * 0.5), 750px);
    top: min(calc(100vw * 2.0903), 3612px);
    left: min(calc(100vw * 0.0492), 85px);
    position: absolute;
  }

  .timeline-text span {
    font-size: clamp(24px, calc(100vw * 0.0185), 32px);
  }

  .dots-container {
    width: 100%;
    max-width: 1244px;
    height: calc(100vw * 0.0324);
    margin: min(calc(100vw * 0.0231), 40px) auto 0;
    padding: 0 min(calc(100vw * 0.0116), 20px);
  }

  .year-text {
    font-size: clamp(12px, calc(100vw * 0.0081), 14px);
  }

  .timeline-line {
    width: 100%;
    max-width: 1555px;
    margin: min(calc(100vw * 0.0231), 40px) auto 0;
  }

  .timeline-content-sections {
    width: 100%;
    max-width: 1558px;
    margin: min(calc(100vw * 0.0231), 40px) auto 0;
    padding: 0 min(calc(100vw * 0.0116), 20px);
  }

  .timeline-image-section {
    height: calc(100vw * 0.2865);
  }

  .timeline-text-section {
    height: calc(100vw * 0.2865);
    padding: min(calc(100vw * 0.0289), 50px);
  }

  .timeline-text-section .timeline-text-primary {
    font-size: clamp(48px, calc(100vw * 0.0370), 64px);
  }

  .timeline-text-section .timeline-text-secondary {
    font-size: clamp(14px, calc(100vw * 0.0093), 15px);
  }

  .kpm-svg-footer {
    width: min(calc(100vw * 0.99), 1720px) !important;
    height: min(calc(100vw * 0.4167), 720px) !important;
    top: max(
      calc(min(calc(100vw * 1.6667), 2880px) + var(--about-gap-after-mission)),
      calc(
        max(
          calc(100vw * 1.7564 + 40px - var(--about-strip-after-hero) + min(385px, calc(100vw * 0.2228))),
          calc(100vw * 1.8142 + 40px - var(--about-strip-after-hero) + min(240px, calc(100vw * 0.1389)))
        ) + var(--about-gap-after-mission)
      )
    ) !important;
    left: 0 !important;
    position: absolute !important;
    z-index: 0 !important;
  }

  .new-image-after-footer {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: min(calc(100vw * 1), 758px) !important;
    top: max(
      calc(min(calc(100vw * 1.8049), 3119px) + var(--about-gap-after-mission)),
      calc(
        max(
          calc(100vw * 1.7564 + 40px - var(--about-strip-after-hero) + min(385px, calc(100vw * 0.2228))),
          calc(100vw * 1.8142 + 40px - var(--about-strip-after-hero) + min(240px, calc(100vw * 0.1389)))
        ) + 239px + var(--about-gap-after-mission)
      )
    ) !important;
    left: 0 !important;
    position: absolute !important;
    z-index: 1 !important;
  }

  .commitment-text {
    width: min(calc(100vw * 0.3582), 619px) !important;
    height: min(calc(100vw * 0.0914), 158px) !important;
    top: min(calc(100vw * 0.1123), 194px) !important;
    left: min(calc(100vw * 0.0995), 172px) !important;
    font-size: clamp(32px, calc(100vw * 0.0370), 64px) !important;
  }

  .hello-text {
    width: min(calc(100vw * 0.3513), 607px) !important;
    height: auto !important;
    max-height: none !important;
    top: min(calc(100vw * 0.2344), 405px) !important;
    left: min(calc(100vw * 0.0995), 172px) !important;
    font-size: clamp(16px, calc(100vw * 0.0139), 24px) !important;
    line-height: 1.65 !important;
    display: block !important;
  }

  .commitment-button {
    width: min(calc(110vw * 0.15), 260px) !important;
    height: min(calc(100vw * 0.0347), 60px) !important;
    top: auto !important;
    bottom: min(calc(100vw * 0.055), 72px) !important;
    left: min(calc(100vw * 0.0990), 171px) !important;
    padding: min(calc(100vw * 0.0058), 10px) min(calc(100vw * 0.0174), 30px) !important;
    gap: min(calc(100vw * 0.0058), 10px) !important;
  }

  .commitment-button-text {
    font-size: clamp(16px, calc(100vw * 0.0116), 20px) !important;
    line-height: clamp(32px, calc(100vw * 0.0231), 40px) !important;
  }

}

/* Desktop laptop widths: footer must track scaled commitment banner (not fixed 5450px) */
@media screen and (min-width: 1201px) and (max-width: 1728px) {
  .KPM_WEBSITE_FOOTER {
    top: max(
      calc(
        min(calc(100vw * 2.7424), 4739px) + min(calc(100vw * 1.08), 880px) - var(--about-strip-footer-stack) + var(--about-gap-after-mission)
      ),
      calc(
        max(
          calc(100vw * 1.7564 + 40px - var(--about-strip-after-hero) + min(385px, calc(100vw * 0.2228))),
          calc(100vw * 1.8142 + 40px - var(--about-strip-after-hero) + min(240px, calc(100vw * 0.1389)))
        ) + 239px + min(calc(100vw * 1.08), 880px) + var(--about-gap-after-mission)
      )
    ) !important;
  }
}

/* Medium Desktop Responsive Styles - 1440px */
@media screen and (max-width: 1440px) {
  .about-section {
    width: 100%;
    height: calc(100vw * 0.4444);
    max-height: 640px;
  }

  .svg-container {
    width: 100%;
    height: calc(100vw * 0.3889);
    top: min(calc(100vw * 0.1806), 260px);
  }

  .main-image-container {
    width: calc(100vw * 0.7222);
    max-width: 1040px;
    height: calc(100vw * 0.4028);
    max-height: 580px;
    top: min(calc(100vw * 0.1250), 180px);
    left: min(calc(100vw * 0.2361), 340px);
  }

  .text-container {
    width: calc(100vw * 0.3681);
    max-width: 530px;
    height: calc(100vw * 0.2153);
    max-height: 310px;
    top: min(calc(100vw * 0.2083), 300px);
    left: min(calc(100vw * 0.0694), 100px);
    padding: 25px;
  }

  .text-heading {
    font-size: clamp(36px, calc(100vw * 0.0389), 56px);
    width: calc(100% - 20px);
  }

  .text-label {
    font-size: clamp(18px, calc(100vw * 0.0153), 22px);
  }

  .timeline-number-sections {
    width: calc(100vw * 0.8542);
    max-width: 1230px;
    top: calc(100vw * 0.4444 + 250px);
    left: min(calc(100vw * 0.0694), 100px);
  }

  .timeline-image-container {
    width: calc(100vw * 0.5556);
    max-width: 800px;
    height: calc(100vw * 0.4236);
    max-height: 610px;
    top: calc(100vw * 0.9028 + 20px - var(--about-strip-after-hero));
  }

  .timeline-text-span {
    font-size: clamp(40px, calc(100vw * 0.044), 64px);
    width: calc(100vw * 0.48);
    max-width: 640px;
    height: auto;
    max-height: none;
    top: calc(100vw * 0.9306 + 20px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.5972), 860px);
  }

  .timeline-description-span {
    width: calc(100vw * 0.3611);
    height: auto;
    max-height: none;
    line-height: 1.65;
    display: block;
    top: calc(100vw * 1.0833 + 20px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.5972), 860px);
  }

  .timeline-button {
    top: calc(100vw * 1.1736 + 110px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.5972), 860px);
  }

  .our-vision-span {
    top: calc(100vw * 1.4583 + 20px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.1111), 160px);
  }

  .vision-description-span {
    top: calc(100vw * 1.5069 + 20px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.1111), 160px);
  }

  .vision-image-container-1 {
    width: calc(100vw * 0.2153);
    max-width: 310px;
    height: calc(100vw * 0.2431);
    max-height: 350px;
    top: calc(100vw * 1.4931 + 20px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.6111), 880px);
  }

  .vision-image-container-2 {
    width: calc(100vw * 0.2153);
    max-width: 310px;
    height: calc(100vw * 0.2431);
    max-height: 350px;
    top: calc(100vw * 1.4236 + 20px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.5139), 740px);
  }

  .vision-image-container-3 {
    width: calc(100vw * 0.2153);
    max-width: 310px;
    height: calc(100vw * 0.2431);
    max-height: 350px;
    top: calc(100vw * 1.3889 + 20px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.7639), 1100px);
  }

  .vision-image-container-4 {
    width: calc(100vw * 0.2153);
    max-width: 310px;
    height: calc(100vw * 0.2431);
    max-height: 350px;
    top: calc(100vw * 1.8681 + 20px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.1111), 160px);
  }

  .our-mission-span {
    top: calc(100vw * 1.8889 + 20px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.3889), 560px);
  }

  .mission-description-span {
    width: calc(100vw * 0.5278);
    top: calc(100vw * 1.9375 + 20px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.3889), 560px);
  }

  .timeline-container {
    width: min(calc(100vw * 0.9306), 1340px);
    top: min(calc(100vw * 2.2361), 3220px);
    left: min(calc(100vw * 0.0486), 70px);
  }

  .kpm-svg-footer {
    width: min(calc(100vw * 0.9931), 1430px) !important;
    top: max(
      calc(min(calc(100vw * 2.8056), 4040px) - var(--about-strip-footer-stack) + var(--about-gap-after-mission)),
      calc(
        max(
          calc(100vw * 1.8681 + 20px - var(--about-strip-after-hero) + min(350px, calc(100vw * 0.2431))),
          calc(100vw * 1.9375 + 20px - var(--about-strip-after-hero) + 240px)
        ) + var(--about-gap-after-mission)
      )
    ) !important;
  }

  .new-image-after-footer {
    width: 100% !important;
    max-width: none !important;
    top: max(
      calc(min(calc(100vw * 2.9514), 4250px) - var(--about-strip-footer-stack) + var(--about-gap-after-mission)),
      calc(
        max(
          calc(100vw * 1.8681 + 20px - var(--about-strip-after-hero) + min(350px, calc(100vw * 0.2431))),
          calc(100vw * 1.9375 + 20px - var(--about-strip-after-hero) + 240px)
        ) + 239px + var(--about-gap-after-mission)
      )
    ) !important;
  }

  .commitment-button {
    top: auto !important;
    bottom: min(calc(100vw * 0.09), 140px) !important;
  }

}

/* Tablet Landscape - 992px */
@media screen and (max-width: 992px) {
  .about-section {
    height: calc(100vw * 0.5);
  }

  .text-container {
    width: calc(100vw * 0.45);
    max-width: 446px;
    height: auto;
    min-height: 280px;
    padding: 20px;
  }

  .text-heading {
    font-size: clamp(28px, calc(100vw * 0.0403), 40px);
    position: relative;
    top: auto;
    left: auto;
    margin-top: 15px;
  }

  .text-label {
    font-size: clamp(16px, calc(100vw * 0.0201), 20px);
    position: relative;
    top: auto;
    left: auto;
  }

  .main-image-container {
    width: calc(100vw * 0.75);
    height: calc(100vw * 0.42);
    left: min(calc(100vw * 0.20), 198px);
  }

  .timeline-number-sections {
    width: calc(100vw * 0.88);
    top: calc(100vw * 0.5 + 220px);
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 25px;
  }

  /* Stack each timeline item vertically on mobile/tablet */
  .timeline-content-item {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  /* Ensure children fill available width when stacked */
  .timeline-content-item .timeline-image-section,
  .timeline-content-item .timeline-text-section {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .timeline-number-section {
    flex-direction: row;
    text-align: left;
    gap: 18px;
    padding: 18px;
  }

  .timeline-text-primary {
    font-size: clamp(40px, calc(100vw * 0.0504), 50px);
    min-width: 70px;
    width: auto;
    height: auto;
  }

  .timeline-text-secondary {
    font-size: clamp(16px, calc(100vw * 0.0181), 18px);
    width: auto;
    height: auto;
    flex: 1;
  }

  .timeline-image-container {
    width: calc(100vw * 0.75);
    max-width: 744px;
    height: auto;
    top: 1150px;
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-text-span {
    width: calc(100vw * 0.7);
    height: auto;
    top: 1250px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(48px, calc(100vw * 0.0705), 70px);
    text-align: center;
    justify-content: center;
  }

  .timeline-description-span {
    width: calc(100vw * 0.75);
    max-width: 580px;
    height: auto;
    top: 1370px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(16px, calc(100vw * 0.0181), 18px);
    text-align: center;
    justify-content: center;
  }

  .timeline-button {
    width: 170px;
    height: 55px;
    top: 1490px;
    left: 50%;
    transform: translateX(-50%);
  }

  .our-vision-span {
    width: 90%;
    max-width: 450px;
    height: auto;
    top: 1600px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    justify-content: center;
  }

  .vision-description-span {
    width: 90%;
    max-width: 450px;
    height: auto;
    top: 1690px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(24px, calc(100vw * 0.0282), 28px);
    text-align: center;
    justify-content: center;
  }

  .vision-image-container-1,
  .vision-image-container-2,
  .vision-image-container-3 {
    width: calc(100vw * 0.32);
    max-width: 300px;
    height: calc(100vw * 0.36);
    max-height: 340px;
  }

  .vision-image-container-1 {
    top: 1900px;
    left: calc(50% - 160px);
    transform: none;
  }

  .vision-image-container-2 {
    top: 1900px;
    left: 50%;
    transform: translateX(-50%);
  }

  .vision-image-container-3 {
    top: 1900px;
    left: calc(50% + 160px);
    transform: translateX(-100%);
  }

  .vision-image-container-4 {
    width: calc(100vw * 0.32);
    max-width: 300px;
    height: calc(100vw * 0.36);
    max-height: 340px;
    top: 2300px;
    left: 50%;
    transform: translateX(-50%);
  }

  .our-mission-span {
    width: 90%;
    max-width: 450px;
    height: auto;
    top: 2650px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    justify-content: center;
  }

  .mission-description-span {
    width: 90%;
    max-width: 680px;
    height: auto;
    top: 2740px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(24px, calc(100vw * 0.0282), 28px);
    text-align: center;
    justify-content: center;
  }

  .timeline-container {
    width: 95%;
    max-width: 940px;
    height: 650px;
    top: 3200px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 15px;
  }

  .timeline-content-sections {
    flex-direction: column;
    gap: 20px;
  }

  .timeline-image-section {
    max-width: 100%;
    height: 350px;
  }

  .timeline-text-section {
    max-width: 100%;
    height: auto;
    padding: 35px;
  }

  .kpm-svg-footer {
    width: 100% !important;
    max-width: 992px !important;
    height: calc(100vw * 0.5) !important;
    top: max(
      calc(4100px - var(--about-strip-footer-stack) + var(--about-gap-after-mission)),
      calc(2740px + 340px + var(--about-gap-after-mission))
    ) !important;
  }

  .new-image-after-footer {
    width: 100% !important;
    max-width: 992px !important;
    height: calc(100vw * 0.6) !important;
    top: max(
      calc(4340px - var(--about-strip-footer-stack) + var(--about-gap-after-mission)),
      calc(2740px + 340px + 239px + var(--about-gap-after-mission))
    ) !important;
  }

  .commitment-text {
    width: calc(100vw * 0.5) !important;
    max-width: 496px !important;
    font-size: clamp(36px, calc(100vw * 0.0504), 50px) !important;
    left: min(calc(100vw * 0.0806), 80px) !important;
  }

  .hello-text {
    width: calc(100vw * 0.55) !important;
    max-width: 546px !important;
    font-size: clamp(16px, calc(100vw * 0.0201), 20px) !important;
    left: min(calc(100vw * 0.0806), 80px) !important;
  }

  .commitment-button {
    width: 150px !important;
    height: 55px !important;
    top: auto !important;
    bottom: clamp(40px, calc(100vw * 0.08), 96px) !important;
    left: min(calc(100vw * 0.0806), 80px) !important;
  }

}

@media screen and (max-width: 1024px) {
  .about-section {
    height: calc(100vw * 0.5);
  }

  .text-heading {
    font-size: 48px;
  }

  .text-label {
    font-size: 20px;
  }

  .timeline-number-sections {
    width: calc(100vw * 0.8);
    max-width: 1200px;
    height: auto;
    top: calc(100vw * 0.5 + 40px);
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 30px;
  }

  .timeline-number-section {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    padding: 20px;
    align-items: center;
  }

  .timeline-text-primary {
    font-size: 48px;
    min-width: 80px;
    height: auto;
    width: auto;
  }

  .timeline-text-secondary {
    font-size: 18px;
    width: auto;
    height: auto;
    flex: 1;
  }

  .timeline-image-container {
    width: calc(100vw * 0.7);
    max-width: 700px;
    height: auto;
    top: 1000px;
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-text-span {
    width: calc(100vw * 0.6);
    max-width: 600px;
    height: auto;
    top: 1100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 64px;
    text-align: center;
  }

  .timeline-description-span {
    width: calc(100vw * 0.7);
    max-width: 500px;
    height: auto;
    top: 1200px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    text-align: center;
  }

  .timeline-button {
    width: 160px;
    height: 50px;
    top: 1300px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    gap: 8px;
  }

  .timeline-button-text {
    width: auto;
    height: auto;
    font-size: 18px;
    line-height: 1.2;
  }

  .our-vision-span {
    width: 400px;
    height: auto;
    top: 1400px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
  }

  .vision-description-span {
    width: 400px;
    height: auto;
    top: 1500px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
  }

  .vision-image-container-1,
  .vision-image-container-2,
  .vision-image-container-3 {
    width: 280px;
    height: 320px;
    left: 50%;
    transform: translateX(-50%);
  }

  .vision-image-container-1 {
    top: 1600px;
  }

  .vision-image-container-2 {
    top: 1950px;
  }

  .vision-image-container-3 {
    top: 2300px;
  }

  .vision-image-container-4 {
    width: 280px;
    height: 320px;
    top: 2650px;
    left: 50%;
    transform: translateX(-50%);
  }

  .our-mission-span {
    width: 400px;
    height: auto;
    top: 3000px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
  }

  .mission-description-span {
    width: 600px;
    height: auto;
    top: 3100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
  }

  .timeline-container {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    top: 50px;
    left: 50px;
    position: absolute;
    padding: 0 20px;
  }

  .timeline-text span {
    font-size: 28px;
  }

  .dots-container {
    width: 100%;
    max-width: 1000px;
    height: 50px;
    margin: 30px auto 0;
    padding: 0 20px;
  }

  .year-text {
    font-size: 13px;
  }

  .timeline-line {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 0;
  }

  .timeline-content-sections {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 0 20px;
  }

  .timeline-image-section {
    height: 400px;
  }

  .timeline-text-section {
    height: 400px;
    padding: 40px;
  }

  .timeline-text-section .timeline-text-primary {
    font-size: 48px;
  }

  .timeline-text-section .timeline-text-secondary {
    font-size: 15px;
  }

  .kpm-svg-footer {
    width: 100% !important;
    max-width: 1200px !important;
    height: 500px !important;
    top: max(
      calc(4000px - var(--about-strip-footer-stack) + var(--about-gap-after-mission)),
      calc(3100px + 260px + var(--about-gap-after-mission))
    ) !important;
    left: 0 !important;
    position: absolute !important;
  }

  .new-image-after-footer {
    width: 100% !important;
    max-width: 1200px !important;
    height: 500px !important;
    top: max(
      calc(4200px - var(--about-strip-footer-stack) + var(--about-gap-after-mission)),
      calc(3100px + 260px + 239px + var(--about-gap-after-mission))
    ) !important;
    left: 0 !important;
    position: absolute !important;
  }

  .commitment-text {
    width: 500px !important;
    height: 120px !important;
    top: 150px !important;
    left: 120px !important;
    font-size: 48px !important;
  }

  .hello-text {
    width: 500px !important;
    height: 120px !important;
    top: 300px !important;
    left: 120px !important;
    font-size: 18px !important;
    line-height: 30px !important;
  }

  .commitment-button {
    width: 140px !important;
    height: 50px !important;
    top: auto !important;
    bottom: clamp(48px, calc(100vw * 0.08), 120px) !important;
    left: 120px !important;
    padding: 8px 24px !important;
    gap: 8px !important;
  }

  .commitment-button-text {
    font-size: 18px !important;
    line-height: 32px !important;
  }

}

@media screen and (max-width: 768px) {
  .about-section {
    height: calc(100vw * 0.65);
  }

  .svg-container {
    width: 100%;
    height: calc(100vw * 0.45);
    top: min(calc(100vw * 0.20), 150px);
  }

  .main-image-container {
    width: calc(100vw * 0.85);
    height: calc(100vw * 0.48);
    top: min(calc(100vw * 0.15), 115px);
    left: 50%;
    transform: translateX(-50%);
  }

  .text-container {
    width: calc(100vw * 0.80);
    max-width: 90%;
    height: auto;
    min-height: 240px;
    top: min(calc(100vw * 0.30), 230px);
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
  }

  .text-heading {
    font-size: clamp(24px, calc(100vw * 0.0469), 36px);
    width: 100%;
    position: relative;
    top: 10px;
    left: 10px;
  }

  .text-label {
    font-size: clamp(16px, calc(100vw * 0.0234), 18px);
    position: relative;
    top: 10px;
    left: 10px;
  }

  .timeline-number-sections {
    width: calc(100vw * 0.92);
    max-width: 90%;
    height: auto;
    top: calc(100vw * 0.65 + 50px);
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 18px;
  }

  .timeline-number-section {
    flex-direction: row;
    text-align: left;
    gap: 15px;
    padding: 15px;
    align-items: center;
  }

  .timeline-svg svg {
    width: 28px;
    height: 28px;
  }

  .timeline-text-primary {
    font-size: clamp(32px, calc(100vw * 0.0469), 36px);
    min-width: 60px;
    height: auto;
    width: auto;
  }

  .timeline-text-secondary {
    font-size: clamp(14px, calc(100vw * 0.0208), 16px);
    width: auto;
    height: auto;
    flex: 1;
    line-height: 1.3;
  }

  .timeline-image-container {
    width: calc(100vw * 0.85);
    max-width: 90%;
    height: auto;
    top: 950px;
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-text-span {
    width: calc(100vw * 0.85);
    max-width: 90%;
    height: auto;
    top: 1050px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(36px, calc(100vw * 0.0625), 48px);
    text-align: center;
    justify-content: center;
    line-height: 1.2;
  }

  .timeline-description-span {
    width: calc(100vw * 0.88);
    max-width: 90%;
    height: auto;
    top: 1180px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(14px, calc(100vw * 0.0208), 16px);
    text-align: center;
    justify-content: center;
    line-height: 1.4;
  }

  .timeline-button {
    width: clamp(120px, calc(100vw * 0.1823), 140px);
    height: 45px;
    top: 1300px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    gap: 6px;
  }

  .timeline-button-text {
    width: auto;
    height: auto;
    font-size: 16px;
    line-height: 1.2;
  }

  .our-vision-span {
    width: calc(100vw * 0.85);
    max-width: 90%;
    height: auto;
    top: 1420px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(14px, calc(100vw * 0.0208), 16px);
    line-height: 1.3;
    text-align: center;
    justify-content: center;
  }

  .vision-description-span {
    width: calc(100vw * 0.85);
    max-width: 90%;
    height: auto;
    top: 1500px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(20px, calc(100vw * 0.03125), 24px);
    line-height: 1.3;
    text-align: center;
    justify-content: center;
  }

  .vision-image-container-1,
  .vision-image-container-2,
  .vision-image-container-3 {
    width: calc(100vw * 0.38);
    max-width: 280px;
    height: calc(100vw * 0.43);
    max-height: 320px;
    left: 50%;
  }

  .vision-image-container-1 {
    top: 1700px;
    transform: translateX(calc(-50% - 130px));
  }

  .vision-image-container-2 {
    top: 1700px;
    transform: translateX(-50%);
  }

  .vision-image-container-3 {
    top: 1700px;
    transform: translateX(calc(-50% + 130px));
  }

  .vision-image-container-4 {
    width: calc(100vw * 0.38);
    max-width: 280px;
    height: calc(100vw * 0.43);
    max-height: 320px;
    top: 2080px;
    left: 50%;
    transform: translateX(-50%);
  }

  .our-mission-span {
    width: calc(100vw * 0.85);
    max-width: 90%;
    height: auto;
    top: 2440px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(14px, calc(100vw * 0.0208), 16px);
    line-height: 1.3;
    text-align: center;
    justify-content: center;
  }

  .mission-description-span {
    width: calc(100vw * 0.90);
    max-width: 90%;
    height: auto;
    top: 2520px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(20px, calc(100vw * 0.03125), 24px);
    line-height: 1.3;
    text-align: center;
    justify-content: center;
  }

  .timeline-container {
    width: 96%;
    max-width: 90%;
    height: auto;
    min-height: 550px;
    top: 2900px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 15px;
  }

  .timeline-text {
    margin: 40px auto 0;
  }

  .timeline-text span {
    font-size: clamp(20px, calc(100vw * 0.03125), 24px);
  }

  .dots-container {
    width: 100%;
    max-width: 90%;
    height: auto;
    min-height: 45px;
    margin: 25px auto 0;
    padding: 0 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .dot-year-item {
    min-width: 50px;
  }

  .year-text {
    font-size: clamp(11px, calc(100vw * 0.0156), 12px);
  }

  .year-text.active {
    font-size: clamp(22px, calc(100vw * 0.03125), 24px);
  }

  .timeline-line {
    width: 100%;
    max-width: 90%;
    margin: 25px auto 0;
  }

  .timeline-content-sections {
    width: 100%;
    max-width: 90%;
    margin: 25px auto 0;
    padding: 0 10px;
    flex-direction: column;
    gap: 15px;
  }

  .timeline-image-section {
    width: 100%;
    max-width: 100%;
    height: 280px;
  }

  .timeline-text-section {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 250px;
    padding: 25px 20px;
  }

  .timeline-text-section .timeline-text-primary {
    font-size: clamp(28px, calc(100vw * 0.0469), 36px);
    height: auto;
    margin-bottom: 15px;
  }

  .timeline-text-section .timeline-text-secondary {
    font-size: clamp(13px, calc(100vw * 0.0182), 14px);
    line-height: 1.5;
  }

  .kpm-svg-footer {
    width: 100% !important;
    max-width: 100% !important;
    height: calc(100vw * 0.55) !important;
    max-height: 420px !important;
    top: max(
      calc(3700px - var(--about-strip-footer-stack) + var(--about-gap-after-mission)),
      calc(2520px + 280px + var(--about-gap-after-mission))
    ) !important;
    left: 0 !important;
  }

  .new-image-after-footer {
    position: relative !important;
    width: min(90vw, 420px) !important;
    min-width: 220px !important;
    height: auto !important;
    top: auto !important;
    left: auto !important;
    margin: 0 auto 24px !important;
  }

  .new-image-after-footer img {
    height: auto !important;
  }

  .commitment-text {
    position: absolute !important;
    width: 84% !important;
    top: 14% !important;
    left: 8% !important;
    font-size: clamp(20px, 5vw, 26px) !important;
    line-height: 1.25 !important;
  }

  .hello-text {
    position: absolute !important;
    width: 84% !important;
    top: 46% !important;
    left: 8% !important;
    font-size: clamp(12px, 3vw, 18px) !important;
    line-height: clamp(18px, 3.6vw, 26px) !important;
  }

  .commitment-button {
    position: absolute !important;
    width: auto !important;
    top: 72% !important;
    left: 8% !important;
    padding: 8px 22px !important;
    gap: 6px !important;
    display: inline-flex !important;
  }

  .commitment-button-text {
    font-size: clamp(12px, 3.2vw, 16px) !important;
    line-height: 1.3 !important;
  }

}

@media screen and (max-width: 480px) {
  .about-section {
    height: calc(100vw * 0.70);
    min-height: 320px;
  }

  .svg-container {
    width: 100%;
    height: calc(100vw * 0.50);
    top: min(calc(100vw * 0.22), 105px);
  }

  .main-image-container {
    width: calc(100vw * 0.90);
    height: calc(100vw * 0.51);
    top: min(calc(100vw * 0.16), 77px);
    left: 50%;
    transform: translateX(-50%);
  }

  .text-container {
    width: calc(100vw * 0.88);
    max-width: 92%;
    height: auto;
    min-height: 200px;
    top: min(calc(100vw * 0.34), 163px);
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
  }

  .text-heading {
    font-size: clamp(20px, calc(100vw * 0.0583), 28px);
    width: 100%;
    position: relative;
    top: 8px;
    left: 8px;
    line-height: 1.2;
    color: white !important;
  }

  .text-label {
    font-size: clamp(14px, calc(100vw * 0.0333), 16px);
    position: relative;
    top: 8px;
    left: 8px;
  }

  .timeline-number-sections {
    width: calc(100vw * 0.94);
    max-width: 92%;
    height: auto;
    top: calc(100vw * 0.70 + 40px);
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 12px;
  }

  .timeline-number-section {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px;
    align-items: center;
  }

  .timeline-svg svg {
    width: 24px;
    height: 24px;
  }

  .timeline-text-primary {
    font-size: clamp(24px, calc(100vw * 0.0583), 28px);
    min-width: auto;
    height: auto;
    width: auto;
  }

  .timeline-text-secondary {
    font-size: clamp(13px, calc(100vw * 0.0292), 14px);
    width: 100%;
    height: auto;
    flex: none;
    line-height: 1.3;
  }

  .timeline-image-container {
    width: calc(100vw * 0.92);
    max-width: 92%;
    height: auto;
    top: 750px;
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-text-span {
    width: calc(100vw * 0.92);
    max-width: 92%;
    height: auto;
    top: 850px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(26px, calc(100vw * 0.0667), 32px);
    text-align: center;
    justify-content: center;
    line-height: 1.2;
  }

  .timeline-description-span {
    width: calc(100vw * 0.92);
    max-width: 92%;
    height: auto;
    top: 970px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(13px, calc(100vw * 0.0292), 14px);
    text-align: center;
    justify-content: center;
    line-height: 1.4;
  }

  .timeline-button {
    width: clamp(100px, calc(100vw * 0.25), 120px);
    height: 40px;
    top: 1090px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    gap: 5px;
  }

  .timeline-button-text {
    width: auto;
    height: auto;
    font-size: 14px;
    line-height: 1.2;
  }

  .our-vision-span {
    width: calc(100vw * 0.90);
    max-width: 92%;
    height: auto;
    top: 1200px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(13px, calc(100vw * 0.0292), 14px);
    line-height: 1.3;
    text-align: center;
    justify-content: center;
  }

  .vision-description-span {
    width: calc(100vw * 0.90);
    max-width: 92%;
    height: auto;
    top: 1280px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(18px, calc(100vw * 0.0417), 20px);
    line-height: 1.3;
    text-align: center;
    justify-content: center;
  }

  .vision-image-container-1,
  .vision-image-container-2,
  .vision-image-container-3 {
    width: calc(100vw * 0.42);
    max-width: 200px;
    height: calc(100vw * 0.48);
    max-height: 230px;
    left: 50%;
  }

  .vision-image-container-1 {
    top: 1480px;
    transform: translateX(-50%);
  }

  .vision-image-container-2 {
    top: 1730px;
    transform: translateX(-50%);
  }

  .vision-image-container-3 {
    top: 1980px;
    transform: translateX(-50%);
  }

  .vision-image-container-4 {
    width: calc(100vw * 0.42);
    max-width: 200px;
    height: calc(100vw * 0.48);
    max-height: 230px;
    top: 2230px;
    left: 50%;
    transform: translateX(-50%);
  }

  .our-mission-span {
    width: calc(100vw * 0.90);
    max-width: 92%;
    height: auto;
    top: 2490px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(13px, calc(100vw * 0.0292), 14px);
    line-height: 1.3;
    text-align: center;
    justify-content: center;
  }

  .mission-description-span {
    width: calc(100vw * 0.92);
    max-width: 92%;
    height: auto;
    top: 2570px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(18px, calc(100vw * 0.0417), 20px);
    line-height: 1.3;
    text-align: center;
    justify-content: center;
  }

  .timeline-container {
    width: 97%;
    max-width: 92%;
    height: auto;
    min-height: 480px;
    top: 2850px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 8px;
  }

  .timeline-text {
    margin: 30px auto 0;
  }

  .timeline-text span {
    font-size: clamp(18px, calc(100vw * 0.0417), 20px);
  }

  .dots-container {
    width: 100%;
    max-width: 92%;
    height: auto;
    min-height: 40px;
    margin: 20px auto 0;
    padding: 0 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
  }

  .dot-year-item {
    min-width: 45px;
    padding: 8px;
  }

  .year-text {
    font-size: clamp(10px, calc(100vw * 0.0229), 11px);
    white-space: nowrap;
  }

  .year-text.active {
    font-size: clamp(18px, calc(100vw * 0.0417), 20px);
  }

  .dot {
    width: 4px;
    height: 4px;
  }

  .dot.active {
    width: 10px;
    height: 10px;
  }

  .timeline-line {
    width: 100%;
    max-width: 92%;
    margin: 20px auto 0;
  }

  .timeline-content-sections {
    width: 100%;
    max-width: 92%;
    margin: 20px auto 0;
    padding: 0 8px;
    flex-direction: column;
    gap: 12px;
  }

  .timeline-image-section {
    width: 100%;
    max-width: 100%;
    height: 220px;
  }

  .timeline-text-section {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 220px;
    padding: 20px 15px;
  }

  .timeline-text-section .timeline-text-primary {
    font-size: clamp(24px, calc(100vw * 0.0583), 28px);
    height: auto;
    margin-bottom: 12px;
  }

  .timeline-text-section .timeline-text-secondary {
    font-size: clamp(12px, calc(100vw * 0.0271), 13px);
    line-height: 1.5;
  }

  .kpm-svg-footer {
    width: 100% !important;
    max-width: 100% !important;
    height: calc(100vw * 0.625) !important;
    max-height: 300px !important;
    top: max(
      calc(3500px - var(--about-strip-footer-stack) + var(--about-gap-after-mission)),
      calc(2570px + 260px + var(--about-gap-after-mission))
    ) !important;
    left: 0 !important;
  }

  .new-image-after-footer {
    width: 100% !important;
    max-width: 100% !important;
    height: calc(100vw * 0.75) !important;
    max-height: 360px !important;
    top: max(
      calc(3680px - var(--about-strip-footer-stack) + var(--about-gap-after-mission)),
      calc(2570px + 260px + 239px + var(--about-gap-after-mission))
    ) !important;
    left: 0 !important;
  }

  .commitment-text {
    width: calc(100vw * 0.80) !important;
    max-width: 88% !important;
    height: auto !important;
    top: clamp(60px, calc(100vw * 0.1667), 80px) !important;
    left: clamp(20px, calc(100vw * 0.0417), 20px) !important;
    font-size: clamp(22px, calc(100vw * 0.0583), 28px) !important;
    line-height: 1.2 !important;
  }

  .hello-text {
    width: calc(100vw * 0.85) !important;
    max-width: 88% !important;
    height: auto !important;
    top: clamp(155px, calc(100vw * 0.375), 180px) !important;
    left: clamp(20px, calc(100vw * 0.0417), 20px) !important;
    font-size: clamp(12px, calc(100vw * 0.0292), 14px) !important;
    line-height: clamp(18px, calc(100vw * 0.0417), 20px) !important;
  }

  .commitment-button {
    width: clamp(90px, calc(100vw * 0.2083), 100px) !important;
    height: 40px !important;
    top: auto !important;
    bottom: clamp(24px, calc(100vw * 0.09), 48px) !important;
    left: clamp(20px, calc(100vw * 0.0417), 20px) !important;
    padding: 5px 14px !important;
    gap: 5px !important;
  }

  .commitment-button-text {
    font-size: 14px !important;
    line-height: 24px !important;
  }

}

/* Extra Small Devices - 375px */
@media screen and (max-width: 375px) {
  .about-us-page {
    min-height: 2360px;
  }

  .about-section {
    height: calc(100vw * 0.75);
    min-height: 280px;
  }

  .text-container {
    width: calc(100vw * 0.90);
    max-width: 94%;
    padding: 12px;
    min-height: 180px;
  }

  .text-heading {
    font-size: clamp(18px, calc(100vw * 0.0533), 20px);
    top: 6px;
    left: 6px;
  }

  .text-label {
    font-size: clamp(13px, calc(100vw * 0.0347), 13px);
    top: 6px;
    left: 6px;
  }

  .timeline-number-sections {
    width: calc(100vw * 0.96);
    max-width: 94%;
    gap: 10px;
  }

  .timeline-number-section {
    padding: 10px;
    gap: 6px;
  }

  .timeline-svg svg {
    width: 20px;
    height: 20px;
  }

  .timeline-text-primary {
    font-size: clamp(22px, calc(100vw * 0.0533), 20px);
  }

  .timeline-text-secondary {
    font-size: clamp(12px, calc(100vw * 0.032), 12px);
    line-height: 1.3;
  }

  .timeline-text-span {
    font-size: clamp(24px, calc(100vw * 0.064), 24px);
  }

  .timeline-description-span {
    font-size: clamp(12px, calc(100vw * 0.032), 12px);
  }

  .timeline-button {
    width: clamp(90px, calc(100vw * 0.24), 90px);
    height: 38px;
    padding: 4px 8px;
  }

  .timeline-button-text {
    font-size: 13px;
  }

  .our-vision-span,
  .our-mission-span {
    font-size: clamp(12px, calc(100vw * 0.032), 12px);
  }

  .vision-description-span,
  .mission-description-span {
    font-size: clamp(16px, calc(100vw * 0.04267), 16px);
  }

  .vision-image-container-1,
  .vision-image-container-2,
  .vision-image-container-3,
  .vision-image-container-4 {
    width: calc(100vw * 0.48);
    max-width: 180px;
    height: calc(100vw * 0.55);
    max-height: 206px;
  }

  .timeline-text span {
    font-size: clamp(16px, calc(100vw * 0.04267), 16px);
  }

  .timeline-container {
    padding: 0 6px;
  }

  .dots-container {
    padding: 0 6px;
    gap: 8px;
  }

  .dot-year-item {
    min-width: 40px;
    padding: 6px;
  }

  .year-text {
    font-size: clamp(9px, calc(100vw * 0.024), 9px);
  }

  .year-text.active {
    font-size: clamp(16px, calc(100vw * 0.04267), 16px);
  }

  .timeline-image-section {
    height: 200px;
  }

  .timeline-text-section {
    min-height: 200px;
    padding: 18px 12px;
  }

  .timeline-text-section .timeline-text-primary {
    font-size: clamp(22px, calc(100vw * 0.0533), 20px);
  }

  .timeline-text-section .timeline-text-secondary {
    font-size: clamp(11px, calc(100vw * 0.0293), 11px);
  }

  .commitment-text {
    position: absolute !important;
    top: 16% !important;
    left: 8% !important;
    width: 84% !important;
    font-size: clamp(16px, calc(100vw * 0.0440), 20px) !important;
    line-height: 1.25 !important;
  }

  .hello-text {
    position: absolute !important;
    top: 46% !important;
    left: 8% !important;
    width: 84% !important;
    font-size: clamp(10px, calc(100vw * 0.0260), 13px) !important;
    line-height: clamp(16px, calc(100vw * 0.0360), 20px) !important;
  }

  .commitment-button {
    width: auto !important;
    height: auto !important;
    top: 74% !important;
    left: 8% !important;
    padding: 4px 14px !important;
  }

  .commitment-button-text {
    font-size: 13px !important;
    line-height: 22px !important;
  }

}

/* Prevent horizontal scroll on all screen sizes */
.kpm-nav {
  max-width: 100%;
  box-sizing: border-box;
}

/* Fix elements that might cause horizontal overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Ensure all absolutely positioned elements stay within bounds */
.about-us-page>* {
  max-width: 100vw;
}

/* Prevent child elements from creating their own scroll contexts */
.about-us-page .about-section,
.about-us-page .timeline-container,
.about-us-page .KPM_WEBSITE_FOOTER {
  overflow: visible;
}

/* Ensure content flows naturally without creating scroll contexts */
.light-theme,
.dark-theme {
  overflow: visible;
  width: 100%;
  max-width: 100vw;
}

/* ========================================
   NAVBAR AND MOBILE MENU STYLES
   ======================================== */

/* Main Navbar */
.kpm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 40px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  z-index: 1000;
}

.kpm-nav__logo {
  flex-shrink: 0;
}

.kpm-nav__logo img {
  height: 40px;
  width: auto;
}

.kpm-nav__tabs {
  display: flex;
  gap: 30px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.kpm-nav__tab {
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.kpm-nav__tab:hover {
  color: var(--accent-color, #B1974D) !important;
}

.kpm-nav__icons {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
}

.kpm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.kpm-icon img {
  width: 20px;
  height: 20px;
}

.kpm-nav__divider {
  width: 100%;
  height: 1px;
  background: rgba(177, 151, 77, 0.3);
  margin: 0 auto;
  max-width: 100%;
}

/* Mobile Menu Toggle (Hidden by default, shown on mobile) */
.kpm-nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.kpm-nav__mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #B1974D !important;
  background-color: #B1974D !important;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
  margin: 2px 0;
}

.kpm-nav__mobile-toggle.active span:nth-child(1) {
  background: #B1974D !important;
  background-color: #B1974D !important;
  transform: rotate(-45deg) translate(-5px, 6px);
}

.kpm-nav__mobile-toggle.active span:nth-child(2) {
  background: #B1974D !important;
  background-color: #B1974D !important;
  opacity: 0;
}

.kpm-nav__mobile-toggle.active span:nth-child(3) {
  background: #B1974D !important;
  background-color: #B1974D !important;
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.kpm-nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.kpm-nav__mobile-menu.active {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

/* Ensure mobile menu is visible on mobile devices */
@media screen and (max-width: 1024px) {
  .kpm-nav__mobile-menu {
    z-index: 9999 !important;
  }

  .kpm-nav__mobile-menu.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* Mobile Menu Header */
.kpm-nav__mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(177, 151, 77, 0.3);
}

.kpm-nav__mobile-logo img {
  height: 40px;
  width: auto;
}

.kpm-nav__mobile-close {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.kpm-nav__mobile-close span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 2px 0;
}

.kpm-nav__mobile-close span:first-child {
  transform: rotate(45deg) translate(0px, 0px);
}

.kpm-nav__mobile-close span:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Content */
.kpm-nav__mobile-content {
  padding: 40px 20px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Mobile Navigation Tabs */
.kpm-nav__mobile-tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kpm-nav__mobile-tab {
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: left;
  border-left: 4px solid transparent;
  background-color: rgba(255, 255, 255, 0.05);
}

.kpm-nav__mobile-tab:hover {
  background-color: rgba(177, 151, 77, 0.2);
  border-left-color: #B1974D;
  transform: translateX(10px);
}

/* Mobile Toggle Section */
.kpm-nav__mobile-toggle-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(177, 151, 77, 0.3);
  border-bottom: 1px solid rgba(177, 151, 77, 0.3);
}

.kpm-nav__mobile-toggle-section .ui-switch {
  transform: scale(1.5);
}

/* Mobile Social Icons */
.kpm-nav__mobile-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.kpm-nav__mobile-social .kpm-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  /* background-color: rgba(177, 151, 77); */
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.kpm-nav__mobile-social .kpm-icon:hover {
  background-color: rgba(177, 151, 77, 0.3);
  transform: scale(1.1);
  border-color: #B1974D;
}

.kpm-nav__mobile-social .kpm-icon img {
  width: 24px;
  height: 24px;
}

/* Keep TikTok icon slightly larger in navbar/mobile navbar */
.kpm-nav__icons .kpm-icon img[src*="twitter.svg"],
.kpm-nav__icons .kpm-icon img[src*="twitter-white.svg"],
.kpm-nav__mobile-social .kpm-icon img[src*="twitter.svg"],
.kpm-nav__mobile-social .kpm-icon img[src*="twitter-white.svg"] {
  width: 34px;
  height: 34px;
}

/* Light Mode Mobile Menu Styles */
.kpm-nav__mobile-menu .kpm-nav__mobile-tab[style*="color: black"] {
  color: black !important;
}

.kpm-nav__mobile-menu .kpm-nav__mobile-tab[style*="color: black"]:hover {
  background-color: rgba(177, 151, 77, 0.2);
  color: #B1974D !important;
}

/* Dark Mode Mobile Toggle Styles */
.t-dark-mode .kpm-nav__mobile-toggle span {
  background: #B1974D !important;
  background-color: #B1974D !important;
}

.t-dark-mode .kpm-nav__mobile-toggle.active span:nth-child(1) {
  background: #B1974D !important;
  background-color: #B1974D !important;
}

.t-dark-mode .kpm-nav__mobile-toggle.active span:nth-child(2) {
  background: #B1974D !important;
  background-color: #B1974D !important;
}

.t-dark-mode .kpm-nav__mobile-toggle.active span:nth-child(3) {
  background: #B1974D !important;
  background-color: #B1974D !important;
}

/* Mobile and Tablet Responsive - Desktop-like Layout */
@media screen and (max-width: 1024px) {

  /* Mobile Navbar - Keep desktop layout but smaller */
  .kpm-nav {
    justify-content: space-between;
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  .kpm-nav__logo {
    margin: 0;
    order: 1;
  }

  .kpm-nav__mobile-toggle {
    display: flex;
    order: 3;
    margin: 0;
  }

  .kpm-nav__tabs {
    display: none;
  }

  .kpm-nav__icons {
    display: none;
  }
}

/* Mobile Menu styles are now handled by this file */

/* --- Mobile layout fixes: stacking and overlap corrections --- */
@media screen and (max-width: 768px) {
  .about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto !important;
    min-height: unset !important;
    padding-top: 80px;
    padding-bottom: 12px;
    margin-bottom: 16px;
  }

  /* Hide decorative SVG behind the hero on mobile */
  .about-section .svg-container {
    display: none !important;
  }

  .about-section .text-container {
    position: static !important;
    order: 1;
    width: 90% !important;
    max-width: 90% !important;
    height: auto !important;
    min-height: unset !important;
    margin: 0 auto 16px;
    padding: clamp(18px, 4.5vw, 24px) clamp(16px, 4vw, 22px) !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  .about-section .text-container .text-label,
  .about-section .text-container .text-heading {
    position: static !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
  }

  .about-section .main-image-container {
    position: static !important;
    order: 2;
    width: 90% !important;
    max-width: 90% !important;
    height: auto !important;
    margin: 0 auto;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  .timeline-number-sections {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 88px auto 120px !important;
    padding: 26px 20px 36px !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 18px !important;
    box-sizing: border-box !important;
  }

  /* Match homepage card styling */
  .timeline-number-section {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    gap: 12px !important;
    padding: 18px !important;
    border-radius: 12px !important;
    background: rgba(177, 151, 77, 0.12) !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08) !important;
  }

  .timeline-number-section .timeline-text-primary {
    width: auto !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
  }

  .timeline-number-section .timeline-text-secondary {
    width: 100% !important;
    max-width: 240px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    margin: 2px auto 0 !important;
  }

  .timeline-image-container,
  .timeline-text-span,
  .timeline-description-span {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 0 !important;
  }

  .timeline-image-container {
    margin: clamp(16px, 3.5vw, 24px) auto 0 !important;
  }

  .timeline-text-span,
  .timeline-description-span {
    text-align: left !important;
    justify-content: flex-start !important;
    display: block !important;
    width: 100% !important;
    padding: 0 24px 0 32px !important;
    margin: clamp(20px, 4vw, 28px) auto !important;
  }

  .timeline-container {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    margin: 0 auto 48px !important;
    padding: 40px 20px !important;
    box-sizing: border-box !important;
  }

  .timeline-text {
    position: relative !important;
    width: 100% !important;
    max-width: 220px !important;
    margin: 0 auto 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .timeline-text span {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }

  .dots-container {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 24px auto !important;
    padding: 0 12px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 14px !important;
  }

  .dot-year-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 48px !important;
  }

  .year-text {
    font-size: 12px !important;
  }

  .dot {
    width: 10px !important;
    height: 10px !important;
  }

  .timeline-line {
    position: relative !important;
    width: 100% !important;
    height: 2px !important;
    margin: 12px auto 0 !important;
    background: rgba(177, 151, 77, 0.3) !important;
  }

  .timeline-content-sections {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    margin-top: 32px !important;
  }

  .timeline-image-section {
    width: 100% !important;
  }

  .timeline-image-section .timeline-image,
  .timeline-image-container img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
  }

  .timeline-text-section {
    padding: 22px 18px !important;
    border-radius: 12px !important;
  }

  .our-vision-span,
  .vision-description-span,
  .our-mission-span,
  .mission-description-span {
    width: 100% !important;
    max-width: 100% !important;
    margin: 16px 0 !important;
    padding-left: 24px !important;
    text-align: left !important;
    display: block !important;
  }

  .vision-image-container-1,
  .vision-image-container-2,
  .vision-image-container-3,
  .vision-image-container-4 {
    position: static !important;
  }

  .vision-image-container-1 img,
  .vision-image-container-2 img,
  .vision-image-container-3 img,
  .vision-image-container-4 img {
    width: 100%;
    height: auto;
  }

  .about-us-page .timeline-text-span,
  .about-us-page .timeline-description-span,
  .about-us-page .our-vision-span,
  .about-us-page .vision-description-span,
  .about-us-page .our-mission-span,
  .about-us-page .mission-description-span {
    display: block;
  }

  .timeline-button {
    display: none !important;
  }
}

/* --- Tablet/mobile overlap fixes up to 1200px --- */
@media screen and (max-width: 1200px) {
  .about-us-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: clamp(16px, 2.5vw, 24px) 16px;
    padding: 0 16px;
    min-height: auto !important;
    height: auto !important;
  }

  .about-us-page>* {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    margin: 0;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto !important;
    min-height: unset !important;
    padding-top: 80px;
    padding-bottom: 12px;
    margin-bottom: 16px;
  }

  .about-section .svg-container {
    display: none !important;
  }

  .about-section .text-container {
    position: static !important;
    order: 1;
    width: 90% !important;
    max-width: 90% !important;
    height: auto !important;
    min-height: unset !important;
    margin: 0 auto 12px;
    padding: clamp(20px, 3vw, 28px) clamp(18px, 2.8vw, 26px) !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    z-index: 1 !important;
  }

  .about-section .text-container .text-label,
  .about-section .text-container .text-heading {
    position: static !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
  }

  .about-section .main-image-container {
    position: static !important;
    order: 2;
    width: 90% !important;
    max-width: 90% !important;
    height: auto !important;
    margin: 0 auto;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    z-index: 0 !important;
  }

  .timeline-number-sections {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 104px auto 140px !important;
    padding: 30px 24px 40px !important;
    z-index: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 20px !important;
    box-sizing: border-box !important;
  }

  .timeline-number-section {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    gap: 12px !important;
    padding: 20px !important;
    border-radius: 12px !important;
    background: rgba(177, 151, 77, 0.12) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08) !important;
  }

  .timeline-number-section .timeline-text-primary {
    width: auto !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
  }

  .timeline-number-section .timeline-text-secondary {
    width: 100% !important;
    max-width: 260px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin: 4px auto 0 !important;
    text-align: center !important;
  }

  .timeline-image-container,
  .timeline-text-span,
  .timeline-description-span {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .timeline-image-container {
    margin: clamp(16px, 3vw, 28px) auto 0 !important;
  }

  .timeline-text-span,
  .timeline-description-span {
    text-align: left !important;
    justify-content: flex-start !important;
    display: block !important;
    padding: 0 28px 0 36px !important;
    margin: clamp(20px, 3.5vw, 28px) auto !important;
  }

  .about-us-page .about-section {
    order: 1;
  }

  .about-us-page .timeline-number-sections {
    order: 2;
    margin-top: clamp(20px, 4vw, 32px) !important;
    margin-bottom: clamp(24px, 5vw, 40px) !important;
  }

  .about-us-page .timeline-image-container {
    order: 3;
    margin-top: clamp(16px, 3vw, 24px) !important;
    margin-bottom: clamp(16px, 3vw, 24px) !important;
  }

  .about-us-page .timeline-text-span {
    order: 4;
    margin-bottom: 16px !important;
  }

  .about-us-page .timeline-description-span {
    order: 5;
    margin-bottom: 24px !important;
  }

  .about-us-page .timeline-button {
    order: 6;
  }

  .about-us-page .vision-image-container-2 {
    order: 7;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    min-width: 160px;
    width: 100% !important;
    margin: 20px 0 0 !important;
    position: relative !important;
    height: 180.8px !important;
  }

  .about-us-page .vision-image-container-3 {
    order: 8;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    min-width: 160px;
    width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    height: 180.8px !important;
  }

  .about-us-page .vision-image-container-4 {
    order: 12;
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 160px;
    width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    margin-bottom: 25px !important;
    z-index: 0 !important;
    overflow: hidden !important;
  }

  .about-us-page .our-vision-span {
    order: 10;
    text-align: left !important;
    margin: 0 0 12px !important;
    width: 100% !important;
    display: block !important;
    padding-left: 32px !important;
  }

  .about-us-page .vision-description-span {
    order: 11;
    text-align: left !important;
    margin: 0 0 24px !important;
    width: 100% !important;
    display: block !important;
    padding-left: 32px !important;
  }

  .about-us-page .vision-image-container-1 {
    order: 9;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    min-width: 160px;
    width: 100% !important;
    margin: -100px 0 0 !important;
    position: relative !important;
    height: 180.8px !important;
    z-index: 2 !important;
  }

  .about-us-page .our-mission-span {
    order: 13;
    text-align: left !important;
    margin: 0 0 12px !important;
    position: relative !important;
    width: 100% !important;
    display: block !important;
    padding-left: 32px !important;
    z-index: 1 !important;
  }

  .about-us-page .mission-description-span {
    order: 14;
    text-align: left !important;
    margin: 0 0 24px !important;
    position: relative !important;
    width: 100% !important;
    display: block !important;
    padding-left: 32px !important;
    z-index: 1 !important;
  }

  .about-us-page .timeline-container {
    order: 15;
    margin: 0 !important;
    margin-bottom: 32px !important;
  }

  .about-us-page .kpm-svg-footer {
    order: 16;
    margin: 0 !important;
    margin-bottom: calc(-1 * clamp(200px, 30vw, 360px)) !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: clamp(280px, 42vw, 520px) !important;
    z-index: 0 !important;
  }

  .about-us-page .kpm-svg-footer img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .about-us-page .new-image-after-footer {
    order: 17;
    margin: 0 !important;
    margin-bottom: 32px !important;
    z-index: 1 !important;
    position: relative !important;
  }

  .about-us-page .commitment-button {
    order: 18;
    margin: 0 !important;
    width: auto !important;
    align-self: initial;
  }

  /* ------------------------------------------------------------------
   Commitment banner layout adjustments
   ------------------------------------------------------------------ */
  .new-image-after-footer {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: clamp(20px, 4vw, 48px) !important;
    padding: clamp(112px, 12vw, 180px) clamp(24px, 10vw, 180px) clamp(72px, 9vw, 140px) !important;
    min-height: clamp(440px, 52vw, 780px) !important;
    height: auto !important;
  }

  .new-image-after-footer img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important;
  }

  .new-image-after-footer .commitment-text,
  .new-image-after-footer .hello-text,
  .new-image-after-footer .commitment-button {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: 1 !important;
    width: 100% !important;
    max-width: 640px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .new-image-after-footer .commitment-text {
    font-size: clamp(36px, 5vw, 60px) !important;
    line-height: 1.1 !important;
  }

  .new-image-after-footer .hello-text {
    font-size: clamp(16px, 2.4vw, 24px) !important;
    line-height: clamp(24px, 3.8vw, 36px) !important;
  }

  .new-image-after-footer .commitment-button {
    width: auto !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: clamp(10px, 2vw, 16px) clamp(22px, 4.5vw, 34px) !important;
    gap: clamp(8px, 1.8vw, 14px) !important;
    margin-top: clamp(12px, 3vw, 28px) !important;
  }

  .new-image-after-footer .commitment-button-text {
    width: auto !important;
    height: auto !important;
    font-size: clamp(16px, 2vw, 22px) !important;
    line-height: 1.4 !important;
  }

  @media screen and (max-width: 992px) {
    .new-image-after-footer {
      padding: clamp(96px, 24vw, 140px) clamp(24px, 8vw, 80px) clamp(56px, 16vw, 96px) !important;
      min-height: clamp(380px, 80vw, 640px) !important;
    }

    .new-image-after-footer .commitment-text,
    .new-image-after-footer .hello-text {
      width: min(100%, 520px) !important;
    }
  }

  @media screen and (max-width: 768px) {
    .new-image-after-footer {
      padding: clamp(80px, 24vw, 120px) clamp(16px, 7vw, 48px) clamp(48px, 18vw, 84px) !important;
      gap: clamp(18px, 6vw, 36px) !important;
      min-height: clamp(360px, 110vw, 560px) !important;
    }

    .new-image-after-footer .commitment-text,
    .new-image-after-footer .hello-text,
    .new-image-after-footer .commitment-button {
      width: 100% !important;
      max-width: none !important;
    }

    .new-image-after-footer .commitment-button {
      align-self: flex-start !important;
      width: clamp(200px, 50%, 320px) !important;
    }
  }

  @media screen and (max-width: 480px) {
    .new-image-after-footer {
      padding: clamp(64px, 28vw, 96px) clamp(14px, 6vw, 28px) clamp(40px, 20vw, 72px) !important;
      gap: clamp(16px, 7vw, 28px) !important;
      min-height: clamp(320px, 145vw, 528px) !important;
    }

    .about-us-page .new-image-after-footer {
      order: 16 !important;
    }

    .about-us-page .kpm-svg-footer {
      order: 17 !important;
    }

    .new-image-after-footer .commitment-button {
      width: 50% !important;
      min-width: 200px !important;
      padding: clamp(8px, 3vw, 12px) clamp(20px, 8vw, 28px) !important;
    }

    .kpm-svg-footer {
      width: 100% !important;
      max-width: 100% !important;
      height: 50% !important;
      max-height: none !important;
      overflow: hidden !important;
    }
  }

  .about-us-page .KPM_WEBSITE_FOOTER {
    order: 19;
    margin: 0 !important;
    margin-bottom: 32px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    z-index: 2 !important;
  }

  .about-us-page .vision-image-container-1,
  .about-us-page .vision-image-container-2,
  .about-us-page .vision-image-container-3,
  .about-us-page .vision-image-container-4 {
    position: relative !important;
  }

  .about-us-page .vision-image-container-1 img,
  .about-us-page .vision-image-container-2 img,
  .about-us-page .vision-image-container-3 img,
  .about-us-page .vision-image-container-4 img {
    width: 100%;
    height: auto;
  }

  .about-us-page .vision-image-container-1 img,
  .about-us-page .vision-image-container-2 img,
  .about-us-page .vision-image-container-3 img,
  .about-us-page .vision-image-container-4 img {
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* Large screens: full-width commitment banner, readable body copy, spaced CTA */
@media screen and (min-width: 1201px) {
  .kpm-svg-footer {
    z-index: 0 !important;
  }

  .new-image-after-footer {
    width: 100% !important;
    max-width: none !important;
    left: 0 !important;
    right: 0 !important;
    background: #000000 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    height: auto !important;
    min-height: min(calc(100vw * 1), 758px) !important;
    padding: clamp(120px, 11vw, 194px) clamp(24px, 10vw, 172px) clamp(96px, 9vw, 140px) !important;
    gap: clamp(16px, 2vw, 28px) !important;
    box-sizing: border-box !important;
    z-index: 1 !important;
  }

  .new-image-after-footer img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    z-index: 0 !important;
  }

  .new-image-after-footer .commitment-text,
  .new-image-after-footer .hello-text,
  .new-image-after-footer .commitment-button {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    height: auto !important;
    max-height: none !important;
    z-index: 1 !important;
  }

  .new-image-after-footer .commitment-text {
    width: min(619px, 42vw) !important;
    font-size: clamp(40px, 3.7vw, 64px) !important;
    line-height: 1.15 !important;
    display: block !important;
  }

  .new-image-after-footer .hello-text {
    width: min(607px, 40vw) !important;
    font-size: clamp(18px, 1.4vw, 24px) !important;
    line-height: 1.65 !important;
    display: block !important;
  }

  .new-image-after-footer .commitment-button {
    width: auto !important;
    margin-top: clamp(12px, 2vw, 32px) !important;
    align-self: flex-start !important;
  }

  .KPM_WEBSITE_FOOTER {
    z-index: 2 !important;
  }
}

@media screen and (min-width: 1729px) {
  .about-us-page {
    --about-strip-after-hero: min(500px, calc(100vw * 0.289351851851852));
    --about-strip-footer-stack: min(1620px, calc(100vw * 0.9375));
    min-height: calc(
      min(calc(100vw * 2.7424), 4739px) + min(calc(100vw * 1.08), 880px) + 160px - var(--about-strip-footer-stack) + var(--about-gap-after-mission)
    );
  }

  .about-section {
    max-width: none;
    height: calc(100vw * 0.4167);
  }

  .svg-container {
    max-width: none;
    height: calc(100vw * 0.3744);
    top: calc(100vw * 0.1719);
    left: 0;
  }

  .main-image-container {
    width: calc(100vw * 0.6944);
    max-width: none;
    height: calc(100vw * 0.3906);
    max-height: none;
    top: calc(100vw * 0.1198);
    left: calc(100vw * 0.3079);
  }

  .text-container {
    width: calc(100vw * 0.3565);
    max-width: none;
    height: calc(100vw * 0.2049);
    max-height: none;
    top: calc(100vw * 0.1962);
    left: calc(100vw * 0.0793);
  }

  .text-heading {
    font-size: calc(100vw * 0.0370);
  }

  .text-label {
    font-size: calc(100vw * 0.0139);
  }

  .timeline-number-sections {
    width: calc(100vw * 0.8275);
    max-width: none;
    height: calc(100vw * 0.1128);
    max-height: none;
    top: calc(100vw * 0.4167 + 290px);
    left: calc(100vw * 0.0862);
  }

  .timeline-text-primary {
    font-size: calc(100vw * 0.0370);
    width: calc(100vw * 0.1262);
    max-width: none;
    height: calc(100vw * 0.0561);
    max-height: none;
  }

  .timeline-text-secondary {
    font-size: calc(100vw * 0.0139);
    width: calc(100vw * 0.1534);
    max-width: none;
    height: calc(100vw * 0.0521);
    max-height: none;
  }

  .timeline-image-container {
    width: calc(100vw * 0.54);
    max-width: none;
    height: calc(100vw * 0.3912);
    max-height: none;
    top: calc(100vw * 0.8351 + 40px - var(--about-strip-after-hero));
    left: 0;
  }

  .timeline-text-span {
    width: calc(100vw * 0.48);
    max-width: none;
    top: calc(100vw * 0.8681 + 40px - var(--about-strip-after-hero));
    left: calc(100vw * 0.5729);
    font-size: calc(100vw * 0.037);
  }

  .timeline-description-span {
    width: calc(100vw * 0.3339);
    max-width: none;
    top: calc(100vw * 1.0307 + 40px - var(--about-strip-after-hero));
    left: calc(100vw * 0.5729);
    font-size: calc(100vw * 0.0116);
  }

  .timeline-button {
    width: calc(100vw * 0.1047);
    max-width: none;
    height: calc(100vw * 0.0347);
    max-height: none;
    top: calc(100vw * 1.1279 + 160px - var(--about-strip-after-hero));
    left: calc(100vw * 0.5729);
    padding: calc(100vw * 0.0058) calc(100vw * 0.0116);
    gap: calc(100vw * 0.0058);
  }

  .timeline-button-text {
    width: calc(100vw * 0.0619);
    max-width: none;
    height: calc(100vw * 0.0231);
    max-height: none;
    font-size: calc(100vw * 0.0116);
    line-height: calc(100vw * 0.0231);
  }

  .our-vision-span {
    width: calc(100vw * 0.2830);
    max-width: none;
    height: calc(100vw * 0.0231);
    max-height: none;
    top: calc(100vw * 1.3709 + 40px - var(--about-strip-after-hero));
    left: calc(100vw * 0.1244);
    font-size: calc(100vw * 0.0116);
    line-height: calc(100vw * 0.0231);
  }

  .vision-description-span {
    width: calc(100vw * 0.2830);
    max-width: none;
    height: calc(100vw * 0.1620);
    max-height: none;
    top: calc(100vw * 1.4161 + 40px - var(--about-strip-after-hero));
    left: calc(100vw * 0.1244);
    font-size: calc(100vw * 0.0185);
    line-height: calc(100vw * 0.0231);
  }

  .vision-image-container-1,
  .vision-image-container-2,
  .vision-image-container-3,
  .vision-image-container-4 {
    width: calc(100vw * 0.1973);
    max-width: none;
    height: calc(100vw * 0.2228);
    max-height: none;
  }

  .vision-image-container-1 {
    top: calc(100vw * 1.4074 + 40px - var(--about-strip-after-hero));
    left: calc(100vw * 0.5671);
  }

  .vision-image-container-2 {
    top: calc(100vw * 1.3466 + 40px - var(--about-strip-after-hero));
    left: calc(100vw * 0.4826);
  }

  .vision-image-container-3 {
    top: calc(100vw * 1.3154 + 40px - var(--about-strip-after-hero));
    left: calc(100vw * 0.7020);
  }

  .vision-image-container-4 {
    top: calc(100vw * 1.7564 + 40px - var(--about-strip-after-hero));
    left: calc(100vw * 0.1244);
  }

  .our-mission-span {
    width: calc(100vw * 0.2830);
    max-width: none;
    height: calc(100vw * 0.0231);
    max-height: none;
    top: calc(100vw * 1.7688 + 40px - var(--about-strip-after-hero));
    left: calc(100vw * 0.3727);
    font-size: calc(100vw * 0.0116);
    line-height: calc(100vw * 0.0231);
  }

  .mission-description-span {
    width: calc(100vw * 0.4792);
    max-width: none;
    height: calc(100vw * 0.1389);
    max-height: none;
    top: calc(100vw * 1.8142 + 40px - var(--about-strip-after-hero));
    left: calc(100vw * 0.3727);
    font-size: calc(100vw * 0.0185);
    line-height: calc(100vw * 0.0231);
  }

  .timeline-container {
    width: calc(100vw * 0.9019);
    max-width: none;
    height: calc(100vw * 0.5);
    top: calc(100vw * 2.0903);
    left: calc(100vw * 0.0492);
  }

  .timeline-text span {
    font-size: calc(100vw * 0.0185);
  }

  .dots-container {
    max-width: none;
    height: calc(100vw * 0.0324);
    margin: calc(100vw * 0.0231) auto 0;
    padding: 0 calc(100vw * 0.0116);
  }

  .year-text {
    font-size: calc(100vw * 0.0081);
  }

  .timeline-line {
    max-width: none;
    margin: calc(100vw * 0.0231) auto 0;
  }

  .timeline-content-sections {
    max-width: none;
    margin: calc(100vw * 0.0231) auto 0;
    padding: 0 calc(100vw * 0.0116);
  }

  .timeline-image-section,
  .timeline-text-section {
    height: calc(100vw * 0.2865);
  }

  .timeline-text-section {
    padding: calc(100vw * 0.0289);
  }

  .timeline-text-section .timeline-text-primary {
    font-size: calc(100vw * 0.0370);
  }

  .timeline-text-section .timeline-text-secondary {
    font-size: calc(100vw * 0.0093);
  }

  .kpm-svg-footer {
    width: calc(100vw * 0.99) !important;
    max-width: none !important;
    height: min(calc(100vw * 0.4167), 720px) !important;
    top: max(
      calc(min(calc(100vw * 1.6667), 2880px) + var(--about-gap-after-mission)),
      calc(
        max(
          calc(100vw * 1.7564 + 40px - var(--about-strip-after-hero) + min(385px, calc(100vw * 0.2228))),
          calc(100vw * 1.8142 + 40px - var(--about-strip-after-hero) + min(240px, calc(100vw * 0.1389)))
        ) + var(--about-gap-after-mission)
      )
    ) !important;
    left: 0 !important;
    position: absolute !important;
    z-index: 0 !important;
  }

  .new-image-after-footer {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: min(calc(100vw * 1), 758px) !important;
    top: max(
      calc(min(calc(100vw * 1.8049), 3119px) + var(--about-gap-after-mission)),
      calc(
        max(
          calc(100vw * 1.7564 + 40px - var(--about-strip-after-hero) + min(385px, calc(100vw * 0.2228))),
          calc(100vw * 1.8142 + 40px - var(--about-strip-after-hero) + min(240px, calc(100vw * 0.1389)))
        ) + 239px + var(--about-gap-after-mission)
      )
    ) !important;
    left: 0 !important;
    position: absolute !important;
    z-index: 1 !important;
  }

  .KPM_WEBSITE_FOOTER {
    top: max(
      calc(min(calc(100vw * 2.7424), 4739px) + min(calc(100vw * 1.08), 880px) - var(--about-strip-footer-stack) + var(--about-gap-after-mission)),
      calc(
        max(
          calc(100vw * 1.7564 + 40px - var(--about-strip-after-hero) + min(385px, calc(100vw * 0.2228))),
          calc(100vw * 1.8142 + 40px - var(--about-strip-after-hero) + min(240px, calc(100vw * 0.1389)))
        ) + 239px + min(calc(100vw * 1.08), 880px) + var(--about-gap-after-mission)
      )
    ) !important;
    z-index: 2 !important;
  }
}

@media screen and (min-width: 1729px) {
  .vision-image-container-single {
    width: calc(100vw * 0.42);
    max-width: none;
    aspect-ratio: 16 / 9;
    top: calc(100vw * 1.3466 + 40px - var(--about-strip-after-hero));
    left: calc(100vw * 0.4826);
  }
}

@media screen and (min-width: 1441px) and (max-width: 1728px) {
  .vision-image-container-single {
    width: calc(100vw * 0.42);
    max-width: 726px;
    aspect-ratio: 16 / 9;
    top: calc(100vw * 1.3466 + 40px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.4826), 834px);
  }
}

@media screen and (min-width: 1201px) and (max-width: 1440px) {
  .vision-image-container-single {
    width: calc(100vw * 0.45);
    max-width: 648px;
    aspect-ratio: 16 / 9;
    top: calc(100vw * 1.4236 + 20px - var(--about-strip-after-hero));
    left: min(calc(100vw * 0.4861), 700px);
  }
}

@media screen and (max-width: 1200px) {
  .about-us-page .vision-image-container-single {
    order: 9;
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
    width: 100% !important;
    margin: 0 0 24px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 16 / 9;
    overflow: hidden !important;
  }

  .about-us-page .vision-image-container-single img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
  }
}

/* About Us 1025–1200px: final override — document flow beats legacy absolute layout */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .about-us-page {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 48px !important;
  }

  .about-us-page > *,
  .about-us-page .about-section .text-container,
  .about-us-page .about-section .main-image-container,
  .about-us-page .timeline-image-container,
  .about-us-page .timeline-text-span,
  .about-us-page .timeline-description-span,
  .about-us-page .our-vision-span,
  .about-us-page .vision-description-span,
  .about-us-page .our-mission-span,
  .about-us-page .mission-description-span,
  .about-us-page .vision-image-container-1,
  .about-us-page .vision-image-container-2,
  .about-us-page .vision-image-container-3,
  .about-us-page .vision-image-container-4,
  .about-us-page .vision-image-container-single,
  .about-us-page .kpm-svg-footer,
  .about-us-page .new-image-after-footer,
  .about-us-page .KPM_WEBSITE_FOOTER {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .about-us-page .about-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    height: auto !important;
    min-height: unset !important;
    margin-bottom: 20px !important;
    padding-bottom: 12px !important;
  }

  .about-us-page .about-section .svg-container {
    display: none !important;
  }

  .about-us-page .about-section .text-container {
    order: 1 !important;
    width: min(92%, 640px) !important;
    max-width: 92% !important;
    height: auto !important;
    min-height: unset !important;
    margin: 0 auto 20px !important;
    padding: clamp(22px, 2.4vw, 30px) clamp(20px, 2.2vw, 28px) !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  .about-us-page .about-section .text-container .text-label,
  .about-us-page .about-section .text-container .text-heading {
    position: static !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
  }

  .about-us-page .about-section .main-image-container {
    order: 2 !important;
    width: min(92%, 720px) !important;
    max-width: 92% !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .about-us-page .about-section .main-image-container .main-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .about-us-page .KPM_WEBSITE_FOOTER .kpm-flags-div,
  .about-us-page .KPM_WEBSITE_FOOTER .kpm-social-media-icons,
  .about-us-page .KPM_WEBSITE_FOOTER .kpm-footer-desc2,
  .about-us-page .KPM_WEBSITE_FOOTER .kpm-footer-line,
  .about-us-page .KPM_WEBSITE_FOOTER .kpm-footer-desc {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }

  .about-us-page .timeline-image-container {
    margin-top: clamp(16px, 2.5vw, 24px) !important;
    margin-bottom: clamp(16px, 2.5vw, 24px) !important;
    height: auto !important;
  }
}

/* Mobile/tablet: keep hero image flush with next section */
@media screen and (max-width: 1200px) {
  .about-us-page .about-section {
    margin-bottom: clamp(12px, 2.5vw, 20px) !important;
    padding-bottom: clamp(8px, 2vw, 16px) !important;
  }

  .about-us-page .timeline-image-container {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: clamp(12px, 3vw, 24px) !important;
    margin-bottom: clamp(12px, 3vw, 20px) !important;
    height: auto !important;
  }
}
