:root {
  --hero-text: #ffffff;
  --hero-glass-bg: rgba(7, 46, 85, 0.24);
  --hero-glass-border: rgba(255, 255, 255, 0.16);
  --hero-glass-highlight: rgba(255, 255, 255, 0.11);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Geist", sans-serif;
  color: var(--hero-text);
  background-color: #fff;
}

.scroll-reveal {
  opacity: 0;
  will-change: transform, opacity;
}

.scroll-reveal.reveal-visible {
  opacity: 1;
}

.footerText {
    padding-left:100px;
    font-size:30px;
    font-weight:100;
    color:#2b49ab;
    padding-top:60px;
    padding-bottom:20px;
    
}

.hero-header {
  min-height: 600px;
  background-image: url("../img/header-hero-image.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #06325f;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(3, 31, 62, 0.34), rgba(9, 78, 134, 0.2) 46%, rgba(2, 24, 52, 0.4)),
    radial-gradient(circle at 14% 16%, rgba(98, 218, 255, 0.1), transparent 34%),
    radial-gradient(circle at 86% 80%, rgba(67, 151, 233, 0.1), transparent 34%);
  pointer-events: none;
  z-index: 0;
}

.hero-header > * {
  position: relative;
  z-index: 1;
}

.hero-top {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  background: linear-gradient(130deg, rgba(11, 70, 123, 0.18), var(--hero-glass-bg));
  backdrop-filter: blur(7px) saturate(125%);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
}

.hero-container {
  max-width: none;
  width: 100%;
  padding: 2.25rem 4.8rem 2.6rem;
}

.hero-logo {
  width: 170px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.hero-nav {
  align-items: flex-start;
  gap: 2rem;
}

.hero-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 3.2rem;
  width: min(900px, 100%);
  margin-left: auto;
  justify-items: stretch;
}

.hero-menu-item {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.45rem 0.2rem 0.7rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.hero-menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 42%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(137, 224, 255, 0.9), rgba(255, 255, 255, 0.95));
  opacity: 0;
  transform: translateY(4px);
  transition: right 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
}

.hero-menu-item:hover,
.hero-menu-item:focus-visible {
  color: #e9f8ff;
  opacity: 0.7;
  outline: none;
}

.hero-menu-item:hover::after,
.hero-menu-item:focus-visible::after {
  right: 0;
  opacity: 1;
  transform: translateY(0);
}

.hero-menu-item:hover .hero-menu-text,
.hero-menu-item:focus-visible .hero-menu-text {
  color: rgba(255, 255, 255, 0.98);
}

.hero-menu-item.is-active {
  opacity: 1;
}

.hero-menu-item.is-active::after {
  right: 0;
  opacity: 1;
  transform: translateY(0);
}

.hero-menu-title {
  display: block;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-menu-text {
  display: block;
  font-size: 1rem;
  max-width: 20ch;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}

.hero-menu-item-plain .hero-menu-title {
  margin-bottom: 0;
}

.hero-heading-wrap {
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.hero-heading {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
}

.hero-toggler {
  border: 0;
  box-shadow: none;
}

.hero-toggler .navbar-toggler-icon {
  filter: invert(1);
}

@media (max-width: 1599.98px) {
  .hero-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .hero-menu-grid {
    gap: 2.2rem;
  }

  .hero-menu-title {
    font-size: 24px;
  }

  .hero-menu-text {
    font-size: 14px;
    line-height: 1.35;
  }
}

@media (max-width: 1399.98px) {
  .hero-menu-grid {
    gap: 1.8rem;
  }

  .hero-menu-title {
    font-size: 21px;
  }

  .hero-menu-text {
    font-size: 13px;
    line-height: 1.35;
  }
}

@media (max-width: 1199.98px) {
  .hero-header {
    min-height: 680px;
    background-size: cover;
    background-position: center top;
  }

  .hero-top {
    background: linear-gradient(130deg, rgba(7, 41, 76, 0.42), rgba(6, 31, 59, 0.55));
    backdrop-filter: blur(9px) saturate(120%);
    -webkit-backdrop-filter: blur(9px) saturate(120%);
  }

  .hero-container {
    padding: 1.5rem 1rem;
  }

  .hero-nav {
    gap: 1rem;
  }

  .hero-menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    width: 100%;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
    margin-left: 0;
  }

  .hero-menu-item {
    padding: 0.75rem 0.85rem;
  }

  .hero-menu-title {
    font-size: 28px;
    margin-bottom: 0.4rem;
  }

  .hero-menu-text {
    font-size: 17px;
    line-height: 1.4;
    max-width: none;
  }

  .hero-heading-wrap {
    padding-top: 8.5rem;
    padding-bottom: 4rem;
  }

  .hero-heading {
    max-width: 12ch;
    font-size: 32px;
    line-height: 1.08;
  }
}

@media (max-width: 575.98px) {
  .hero-menu-title {
    font-size: 24px;
  }

  .hero-menu-text {
    font-size: 16px;
  }
}

.impact-section {
  color: #21457e;
  padding-top:100px;
}

.impact-container {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.impact-intro {
  margin-bottom: 100px;
}

.impact-copy {
  padding-right: 150px;;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 300;
  color: #1e416f;
}

.impact-question-wrap {
  position: relative;
}

.impact-plus {
  position: absolute;
  top: 0rem;
  right: 0.55rem;
  width: 78px;
  height: auto;
}

.impact-question {
  margin: 0;
  color: #2f4fa5;
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top:10px;
}

.impact-grid {
  border: 1px solid #d5d8de;
  margin-bottom: 150px;
}

.impact-grid-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.impact-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #d5d8de;
}

.impact-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.35rem 1.6rem;
}

.impact-grid-top .impact-card:not(:last-child) {
  border-right: 1px solid #d5d8de;
}

.impact-card-light {
  color: #2f4fa5;
}

.impact-card-accent {
  background: linear-gradient(145deg, #59b5e2, #58b8e9);
  color: #ffffff;
}

.impact-card-deep {
  background: linear-gradient(135deg, #2f4d99, #3856ab);
  color: #ffffff;
}

.impact-card-bottom-right {
  border-left: 1px solid #d5d8de;
}

.impact-kicker {
  margin: 0 0 0.7rem;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.impact-title {
  margin: 0;
  font-size: 37px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.impact-icon {
  width: 92px;
  height: auto;
  margin-bottom: 1.6rem;
}

.impact-statement {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media (max-width: 1399.98px) {
  .impact-section {
    padding-top: 3.8rem;
  }

  .impact-container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .impact-question-wrap {
    padding-right: 4.4rem;
  }

  .impact-plus {
    width: 64px;
  }

  .impact-card {
    min-height: 250px;
  }
}

@media (max-width: 991.98px) {
  .impact-intro {
    margin-bottom: 2.5rem;
    row-gap: 1.8rem;
  }

  .impact-copy,
  .impact-copy-last {
    max-width: none;
  }

  .impact-question-wrap {
    padding-right: 3.9rem;
  }

  .impact-question {
    font-size: 36px;
  }

  .impact-grid-top {
    grid-template-columns: 1fr;
  }

  .impact-grid-top .impact-card {
    border-right: 0;
    border-bottom: 1px solid #d5d8de;
  }

  .impact-grid-top .impact-card:last-child {
    border-bottom: 0;
  }

  .impact-grid-bottom {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .impact-card-bottom-right {
    border-left: 0;
    border-top: 1px solid #d5d8de;
  }

  .impact-card {
    min-height: 220px;
  }
}

@media (max-width: 575.98px) {
  .impact-section {
    padding-top: 3.1rem;
    padding-bottom: 3.4rem;
  }

  .impact-container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .impact-copy {
    font-size: 1.05rem;
    line-height: 1.42;
  }

  .impact-copy-last {
    margin-top: 1.35rem;
  }

  .impact-question-wrap {
    padding-right: 3.2rem;
  }

  .impact-plus {
    top: 0.15rem;
    right: 0;
    width: 48px;
  }

  .impact-card {
    min-height: 195px;
    padding: 1.85rem 1rem;
  }

  .impact-icon {
    width: 72px;
    margin-bottom: 1rem;
  }

  .impact-title {
    font-size: 1.95rem;
  }

  .impact-statement {
    font-size: 1.75rem;
  }
}

.vision-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #5bb7e1 0%, #66bde6 50%, #59b3dd 100%);
}

.vision-container {
  margin-top:50px;
  position: relative;
  z-index: 1;
}

.vision-row {
  row-gap: 1.5rem;
}

.vision-copy-col {
  padding-top: 60px;
  padding-bottom: 100px;
}

.vision-content {
  max-width: 680px;
}

.vision-title {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 58px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.vision-text {
  margin: 0;
  max-width: 940px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  line-height: 1.36;
  font-weight: 300;
}

.vision-world {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  pointer-events: none;
}

.vision-image-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

@media (min-width: 992px) {
  .vision-world {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
  }
}

@media (max-width: 1599.98px) {
  .vision-title {
    font-size: 52px;
  }

  .vision-text {
    max-width: 760px;
    font-size: 20px;
  }

  .vision-world {
    max-width: 600px;
  }
}

@media (max-width: 1199.98px) {

    .impact-question {
        font-size: 35px;
    }

    .dunya {
      max-width: 400px;
      margin:0 auto;
    }

    .impact-title {
      margin: 0;
      font-size: 26px;
      line-height: 1.14;
      font-weight: 700;
      letter-spacing: -0.015em;
    }

    .impact-statement {
      font-size: 23px;
    }

    .impact-copy {
      padding-right: 50px;
      font-size: 18px;
    }

    .hero-heading {
        max-width: 100%;
        font-size: 42px;
        line-height: 1.08;
    }

  .hero-header {
        min-height: 400px;
        background-size: cover;
        background-position: center top;
  }

  .vision-copy-col {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .vision-title {
    font-size: 42px;
  }

  .vision-text {
    max-width: 620px;
    font-size: 18px;
  }

  .vision-world {
    max-width: 500px;
  }

  .hero-logo {
        width: 120px;
  }

  .hero-top {
    padding-top:0px !important;
    padding-bottom:0px !important;
  }

}

@media (max-width: 991.98px) {

  

  .vision-copy-col {
    padding-top: 44px;
    padding-bottom: 22px;
  }

  .vision-content {
    max-width: none;
  }

  .vision-title {
    font-size: 38px;
  }

  .vision-text {
    max-width: none;
    font-size: 17px;
  }

  .vision-image-col {
    justify-content: center;
  }

  .vision-world {
    position: static;
    width: 72%;
    max-width: 420px;
    margin: 0 auto;
  }



}

@media (max-width: 575.98px) {

  

  .vision-copy-col {
    padding-top: 34px;
    padding-bottom: 16px;
  }

  .vision-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .vision-text {
    font-size: 18px;
    line-height: 1.45;
  }

  .vision-world {
    position: static;
    width: 82%;
    max-width: 320px;
    margin-bottom: 0;
  }
}

.site-footer {
  background-color: #eceef0;
  padding: 44px 0 48px;
}

.footer-container {
  padding-left:100px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo {
  width: 116px;
  height: auto;
  display: block;
}

.footer-email {
  color: #4a4d52;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
}

.footer-email:hover,
.footer-email:focus-visible {
  color: #2f4fa5;
  outline: none;
}

.footer-social {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #2f4fa5;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.footer-social:hover,
.footer-social:focus-visible {
  color: #1f3f8d;
  opacity: 0.85;
  outline: none;
}

@media (max-width: 767.98px) {

  .hero-header {
        min-height: 400px;
        background-size: cover;
        background-position: center top;
  }

  .site-footer {
    padding: 30px 0 34px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-logo {
    width: 102px;
  }

  .footer-email {
    font-size: 16px;
  }

  .footer-social {
    margin-left: 0;
  }
}

.about-hero-header {
  min-height: 440px;
  background-image: url("../img/header-hero-image-7.jpg");
}

.about-hero-intro {
  padding-top: 88px;
  padding-bottom: 82px;
}

.about-hero-kicker {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.about-hero-title {
  margin: 0;
  font-size: 62px;
  line-height: 1.05;
  font-weight: 700;
  color: #fff;
}

.about-hero-subtitle {
  margin: 14px 0 0;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
}

.about-main {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 64px 0 88px;
  color: #173c74;
}

.about-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 340px;
  background: linear-gradient(180deg, rgba(81, 153, 228, 0.14), rgba(81, 153, 228, 0));
  pointer-events: none;
  z-index: 0;
}

.about-main::after {
  content: "";
  position: absolute;
  top: 70px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 129, 206, 0.2), rgba(60, 129, 206, 0));
  pointer-events: none;
  z-index: 0;
}

.about-highlights {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid #d8e5f3;
}

.about-highlight {
  display: block;
  background: transparent;
  border: 0;
  border-left: 3px solid #5a93de;
  border-radius: 0;
  padding: 0 0 0 14px;
  box-shadow: none;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.about-highlight:hover,
.about-highlight:focus-visible {
  border-left-color: #2152a2;
  transform: translateX(2px);
  outline: none;
}

.about-highlight:hover .about-highlight-value,
.about-highlight:focus-visible .about-highlight-value {
  color: #476798;
}

.about-highlight:hover .about-highlight-label,
.about-highlight:focus-visible .about-highlight-label {
  color: #173f80;
}

.about-highlight-value {
  margin: 0;
  color: #5a7db0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.about-highlight-label {
  margin: 7px 0 0;
  color: #2053a2;
  font-size: 23px;
  line-height: 1.22;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.about-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  align-items: start;
}

.about-layout > * {
  min-width: 0;
}

.about-sidebar {
  position: sticky;
  top: 28px;
  align-self: start;
  padding-left: 18px;
  border-left: 1px solid #d8e5f3;
}

.about-sidebar-title {
  margin: 0 0 12px;
  color: #5a7db0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-sidebar-link {
  color: #4a6798;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.about-sidebar-link:hover,
.about-sidebar-link:focus-visible {
  color: #2152a2;
  transform: translateX(2px);
  outline: none;
}

.about-sidebar-link.is-current {
  color: #2152a2;
  font-weight: 600;
}

.about-card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d8e5f3;
  border-radius: 0;
  padding: 36px 0;
  box-shadow: none;
  min-width: 0;
}

.about-card-story {
  grid-column: auto;
}

.about-card-bio {
  grid-column: auto;
}

.about-card-invest {
  grid-column: auto;
  border-left: 4px solid #2c62bb;
  padding-left: 22px;
}

.about-card-science {
  grid-column: auto;
}

.about-card-structure {
  grid-column: auto;
  border-bottom: 0;
}

.about-card-eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a7db0;
}

.about-card-title {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
  color: #214f96;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.about-card p {
  margin: 0;
  color: #244878;
  font-size: 18px;
  line-height: 1.58;
  font-weight: 400;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.about-card p + p {
  margin-top: 14px;
}

.about-note {
  font-weight: 500;
  padding-left: 14px;
  border-left: 3px solid #4f82ce;
}

.about-emphasis {
  display: inline-flex;
  flex-direction: column;
  margin: 8px 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #edf4fd;
  border: 1px solid #cfe0f5;
}

.about-emphasis strong {
  color: #1f4f98;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
}

.about-emphasis span {
  margin-top: 3px;
  color: #2f5f9f;
  font-size: 14px;
  line-height: 1.3;
}

.about-card-invest .about-card-eyebrow {
  color: #4d6fa4;
}

.about-card-invest .about-card-title {
  color: #214f96;
}

.about-card-invest p {
  color: #244878;
}

.about-table-wrap {
  overflow-x: auto;
  margin-top: 8px;
}

.about-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.about-table th,
.about-table td {
  border: 1px solid #d9e4f0;
  padding: 13px 16px;
  text-align: left;
  color: #244878;
  font-size: 17px;
  line-height: 1.4;
}

.about-table th {
  background: #e7f0fb;
  color: #214f96;
  font-weight: 600;
}

@media (max-width: 1199.98px) {
  .about-hero-header {
    min-height: 380px;
  }

  .about-hero-intro {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .about-hero-title {
    font-size: 48px;
  }

  .about-hero-subtitle {
    font-size: 21px;
  }

  .about-main {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-sidebar {
    position: static;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #d8e5f3;
    padding-top: 14px;
  }

  .about-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 8px;
  }

  .about-sidebar-link {
    padding: 3px 0;
    border-bottom: 2px solid transparent;
    transform: none;
  }

  .about-sidebar-link:hover,
  .about-sidebar-link:focus-visible {
    transform: none;
  }

  .about-sidebar-link.is-current {
    border-bottom-color: #2152a2;
  }

  .about-card-story,
  .about-card-bio,
  .about-card-invest,
  .about-card-science,
  .about-card-structure {
    grid-column: auto;
  }

  .about-card {
    padding: 24px 0;
  }

  .about-card-title {
    font-size: 30px;
  }

  .about-card p {
    font-size: 17px;
  }

  .about-emphasis strong {
    font-size: 26px;
  }
}

@media (max-width: 767.98px) {
  .about-hero-header {
    min-height: 0;
  }

  .about-hero-intro {
    padding-top: 56px;
    padding-bottom: 42px;
  }

  .about-hero-kicker {
    font-size: 14px;
  }

  .about-hero-title {
    font-size: 36px;
  }

  .about-hero-subtitle {
    font-size: 18px;
  }

  .about-main {
    padding-top: 38px;
    padding-bottom: 48px;
  }

  .about-highlights {
    margin-bottom: 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 14px;
    min-width: 0;
  }

  .about-layout {
    gap: 16px;
    min-width: 0;
  }

  .about-sidebar-nav {
    gap: 6px 12px;
  }

  .about-sidebar-link {
    font-size: 14px;
  }

  .about-card {
    padding: 18px 0;
    border-radius: 0;
  }

  .about-card-eyebrow {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .about-card-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .about-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  .about-highlight {
    padding: 0 0 0 12px;
  }

  .about-highlight-value {
    font-size: 13px;
  }

  .about-highlight-label {
    font-size: 18px;
    line-height: 1.28;
    margin-top: 5px;
  }

  .about-emphasis {
    width: 100%;
    margin-bottom: 12px;
  }

  .about-emphasis strong {
    font-size: 22px;
  }

  .about-emphasis span {
    font-size: 13px;
  }
}

.team-hero-header {
  min-height: 430px;
  background-image: url("../img/header-hero-image.jpg");
}

.team-hero-intro {
  padding-top: 84px;
  padding-bottom: 74px;
}

.team-hero-kicker {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.team-hero-title {
  margin: 0;
  color: #fff;
  font-size: 58px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.team-hero-subtitle {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 300;
  max-width: 760px;
}

.team-main {
  background:
    radial-gradient(circle at 8% 0%, rgba(88, 157, 227, 0.16), transparent 35%),
    #f7fbff;
  padding: 58px 0 86px;
  color: #173c74;
}

.team-section-title {
  margin: 0 0 14px;
  color: #2152a2;
  font-size: 38px;
  line-height: 1.18;
  font-weight: 600;
}

.team-overview {
  display: block;
  margin-bottom: 26px;
}

.team-overview-text p {
  margin: 0;
  color: #264b7b;
  font-size: 20px;
  line-height: 1.55;
  max-width: 900px;
}

.team-tabs-wrap {
  margin-bottom: 26px;
}

.team-tabs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid #cfe1f7;
  background: #edf4fc;
  border-radius: 999px;
}

.team-tab-btn {
  border: 1px solid transparent;
  background: transparent;
  color: #2a558f;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  padding: 12px 22px;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-tab-btn:hover,
.team-tab-btn:focus-visible {
  color: #1e4f96;
  border-color: #aecaeb;
  outline: none;
}

.team-tab-btn.is-active {
  background: #2152a2;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(25, 63, 130, 0.26);
}

.team-members-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 26px;
}

.team-member-card {
  background: #ffffff;
  border: 1px solid #d8e5f3;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(14, 46, 94, 0.08);
  min-height: 220px;
}

.team-member-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.team-member-photo {
  width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  background-color: #d9e7f8;
  border: 1px solid rgba(37, 86, 160, 0.12);
  flex-shrink: 0;
}

.team-member-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.team-member-name {
  margin: 0;
  color: #2254a3;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 600;
}

.team-member-role {
  margin: 0;
  color: #486c9d;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 500;
}

.team-member-btn {
  align-self: flex-start;
  margin-top: 0.75rem;
  border: 1px solid #8baedf;
  background: #f2f7fd;
  color: #20519f;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  padding: 11px 14px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.team-member-btn:hover,
.team-member-btn:focus-visible {
  background: #20519f;
  border-color: #20519f;
  color: #fff;
  outline: none;
}

.team-modal .modal-content {
  border: 1px solid #d6e2f0;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 52, 108, 0.14);
}

.team-modal .modal-header {
  border-bottom: 1px solid #e4ecf6;
  padding: 18px 20px 14px;
  align-items: flex-start;
}

.team-modal .modal-title {
  color: #20519f;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 600;
  margin: 0;
}

.team-modal-role {
  margin: 6px 0 0;
  color: #4b6b9a;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
}

.team-modal .modal-body {
  padding: 16px 20px 20px;
}

.team-modal .modal-body p {
  margin: 0;
  color: #2b4f7d;
  font-size: 17px;
  line-height: 1.6;
}

.team-modal .modal-body p + p {
  margin-top: 12px;
}

@media (max-width: 1199.98px) {
  .team-hero-header {
    min-height: 380px;
  }

  .team-hero-intro {
    padding-top: 72px;
    padding-bottom: 60px;
  }

  .team-hero-title {
    font-size: 46px;
  }

  .team-hero-subtitle {
    font-size: 20px;
  }

  .team-main {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .team-section-title {
    font-size: 32px;
  }

  .team-overview-text p {
    font-size: 18px;
  }

  .team-members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-member-name {
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
  .team-tabs {
    width: 100%;
    border-radius: 18px;
    justify-content: space-between;
  }

  .team-tab-btn {
    flex: 1 1 0;
    text-align: center;
    white-space: normal;
  }

  .team-members-grid {
    grid-template-columns: 1fr;
  }

  .team-member-card {
    padding: 20px 18px;
    min-height: auto;
  }

  .team-member-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-member-photo {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
  }
}

@media (max-width: 767.98px) {
  .team-hero-header {
    min-height: 0;
  }

  .team-hero-intro {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .team-hero-kicker {
    font-size: 14px;
  }

  .team-hero-title {
    font-size: 34px;
  }

  .team-hero-subtitle {
    margin-top: 12px;
    font-size: 17px;
  }

  .team-main {
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .team-section-title {
    font-size: 26px;
  }

  .team-overview-text p {
    font-size: 16px;
    line-height: 1.5;
  }

  .team-tabs {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px;
    border-radius: 14px;
  }

  .team-tab-btn {
    width: 100%;
    font-size: 14px;
    padding: 10px 14px;
  }

  .team-members-grid {
    gap: 14px;
    margin-bottom: 20px;
  }

  .team-member-card {
    padding: 18px 16px;
  }

  .team-member-name {
    font-size: 18px;
  }

  .team-member-role {
    font-size: 15px;
    line-height: 1.45;
  }

  .team-member-btn {
    /* width: 100%; */
  }

  .team-modal .modal-header {
    padding: 14px 14px 12px;
  }

  .team-modal .modal-title {
    font-size: 28px;
  }

  .team-modal-role {
    font-size: 15px;
  }

  .team-modal .modal-body {
    padding: 12px 14px 16px;
  }

  .team-modal .modal-body p {
    font-size: 15px;
  }
}

.news-hero-header {
  min-height: 420px;
  background-image: url("../img/header-hero-image-8.jpg");
}

.news-hero-intro {
  padding-top: 84px;
  padding-bottom: 72px;
}

.news-hero-kicker {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.news-hero-title {
  margin: 0;
  color: #fff;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.news-hero-subtitle {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 300;
  max-width: 860px;
}

.news-overview {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.news-section-title {
  margin: 0 0 12px;
  color: #2152a2;
  font-size: 38px;
  line-height: 1.18;
  font-weight: 600;
}

.news-section-text {
  margin: 0;
  color: #264b7b;
  font-size: 20px;
  line-height: 1.55;
  max-width: 900px;
}

.news-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.news-item {
  display: block;
  border: 1px solid #d8e5f3;
  border-radius: 14px;
  background: #ffffff;
  padding: 22px 22px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-item:hover {
  transform: translateY(-2px);
  border-color: #b9d1ec;
  box-shadow: 0 12px 28px rgba(14, 46, 94, 0.1);
}

.news-item-date {
  display: inline-block;
  margin: 0;
  color: #5f7faf;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-item-title {
  margin: 10px 0 0;
  color: #214f96;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
}

.news-item-desc {
  margin: 10px 0 0;
  color: #244878;
  font-size: 17px;
  line-height: 1.55;
  max-width: 1060px;
}

.news-item-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: #2152a2;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(33, 82, 162, 0.28);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.news-item-cta:hover,
.news-item-cta:focus-visible {
  color: #173c74;
  border-bottom-color: #173c74;
  text-decoration: none !important;
  outline: none;
}

.news-item-title-group {
  margin-bottom: 24px;
}

.news-item-divider {
  margin: 18px 0;
  border: 0;
  border-top: 1px solid #e2ebf6;
  opacity: 1;
}

@media (max-width: 1199.98px) {
  .news-hero-header {
    min-height: 380px;
  }

  .news-hero-intro {
    padding-top: 72px;
    padding-bottom: 60px;
  }

  .news-hero-title {
    font-size: 46px;
  }

  .news-hero-subtitle {
    font-size: 20px;
  }

  .news-section-title {
    font-size: 32px;
  }

  .news-section-text {
    font-size: 18px;
  }

  .news-item-title {
    font-size: 22px;
  }

  .news-item-desc {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .news-hero-header {
    min-height: 0;
  }

  .news-hero-intro {
    padding-top: 56px;
    padding-bottom: 42px;
  }

  .news-hero-kicker {
    font-size: 14px;
  }

  .news-hero-title {
    font-size: 34px;
  }

  .news-hero-subtitle {
    font-size: 17px;
    margin-top: 12px;
  }

  .news-overview {
    margin-bottom: 0;
  }

  .news-section-title {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .news-section-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .news-item {
    padding: 16px 14px;
  }

  .news-item-date {
    font-size: 12px;
  }

  .news-item-title {
    font-size: 18px;
    margin-top: 8px;
  }

  .news-item-desc {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
  }

  .news-item-cta {
    margin-top: 10px;
    font-size: 14px;
  }
}

.contact-hero-header {
  min-height: 420px;
  background-image: url("../img/header-hero-image-3.jpg");
}

.contact-hero-intro {
  padding-top: 84px;
  padding-bottom: 72px;
}

.contact-hero-kicker {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.contact-hero-title {
  margin: 0;
  color: #fff;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact-hero-subtitle {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 300;
  max-width: 980px;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  border: 1px solid #d8e5f3;
  border-radius: 16px;
  background: #ffffff;
  padding: 24px 22px 22px;
}

.contact-card-label {
  margin: 0;
  color: #5a7db0;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-title {
  margin: 10px 0 0;
  color: #214f96;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 600;
}

.contact-item {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e4ecf6;
}

.contact-item-key {
  margin: 0;
  color: #5f7faf;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item-value {
  margin: 8px 0 0;
  color: #244878;
  font-size: 18px;
  line-height: 1.55;
}

.contact-item-value a {
  color: #2152a2;
  text-decoration: none;
  border-bottom: 1px solid rgba(33, 82, 162, 0.28);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-item-value a:hover,
.contact-item-value a:focus-visible {
  color: #173c74;
  border-bottom-color: #173c74;
  outline: none;
}

@media (max-width: 1199.98px) {
  .contact-hero-header {
    min-height: 380px;
  }

  .contact-hero-intro {
    padding-top: 72px;
    padding-bottom: 60px;
  }

  .contact-hero-title {
    font-size: 46px;
  }

  .contact-hero-subtitle {
    font-size: 20px;
  }

  .contact-card-title {
    font-size: 30px;
  }

  .contact-item-value {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
    
.footerText {
    padding-left:20px;
    font-size:20px;
    padding-right:20px;
    
}    
    
.footer-container {
    padding-left: 20px;
}  
    
  .contact-hero-header {
    min-height: 0;
  }

  .contact-hero-intro {
    padding-top: 56px;
    padding-bottom: 42px;
  }

  .contact-hero-kicker {
    font-size: 14px;
  }

  .contact-hero-title {
    font-size: 34px;
  }

  .contact-hero-subtitle {
    margin-top: 12px;
    font-size: 17px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-card {
    border-radius: 14px;
    padding: 16px 14px 14px;
  }

  .contact-card-title {
    margin-top: 8px;
    font-size: 24px;
  }

  .contact-item {
    margin-top: 12px;
    padding-top: 10px;
  }

  .contact-item-value {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.45;
  }
}
