:root {
  /* =========================
   
     ========================= */
  --navy: #061A2F;
  --navy-2: #0A2947;
  --navy-3: #123E63;

  --blue: #1683C8;
  --blue-bright: #27A7E8;
  --blue-soft: #E8F5FC;

  /* =========================
     MODERN SLATE GREYS
     ========================= */
  --grey-50: #F8FAFC;
  --grey-100: #F1F4F7;
  --grey-200: #E5E9EE;
  --grey-300: #D2D8DF;
  --grey-400: #AEB7C2;
  --grey-500: #697586;
  --grey-600: #4B5868;
  --grey-700: #344253;

  /* =========================
     TEXT
     ========================= */
  --ink: #122033;
  --ink-soft: #526174;
  --white: #FFFFFF;

  /* =========================
     MODERN GREY GRADIENT
     ========================= */
  --gradient-grey:
    linear-gradient(
      135deg,
      #FCFDFE 0%,
      #F6F8FA 22%,
      #EDF1F4 46%,
      #E2E7EC 70%,
      #D4DAE1 100%
    );

  /* =========================
     SUBTLE BLUE GRADIENT
     ========================= */
  --gradient-blue:
    linear-gradient(
      135deg,
      #0A2947 0%,
      #0D4168 52%,
      #1683C8 100%
    );

  /* =========================
     SHADOWS
     ========================= */
  --shadow-sm:
    0 6px 24px rgba(6, 26, 47, 0.07);

  --shadow-md:
    0 14px 40px rgba(6, 26, 47, 0.10);

  --shadow-lg:
    0 28px 80px rgba(6, 26, 47, 0.14);

  /* =========================
     BORDERS
     ========================= */
  --border:
    1px solid rgba(18, 32, 51, 0.09);

  --border-blue:
    1px solid rgba(22, 131, 200, 0.20);

  /* =========================
     UI
     ========================= */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;

  --max-width: 1180px;
}
.logo-image {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}
/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--navy);
  color: white;
}

/* =========================================================
   HEADER
========================================================= */

/* =========================================================
   HEADER / HORIZONTAL NAVIGATION
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 27, 51, 0.97);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.navbar {
  width: 100%;
  max-width: 1400px;
  min-height: 78px;
  margin: 0 auto;
  padding: 0 30px;
background: --gradient-grey:
    linear-gradient(
      135deg,
      #FCFDFE 0%,
      #F6F8FA 22%,
      #EDF1F4 46%,
      #E2E7EC 70%,
      #D4DAE1 100%
    );
  display: flex;
  align-items: center;
  gap: 35px;
}

/* LOGO */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.footer-logo .logo-image {
  width: 36px;
  height: 36px;
}
.logo-mark {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: linear-gradient(
    145deg,
    #1769a8,
    #071b33
  );

  color: #fff;

  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.logo-name {
  color: #fff;

  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.logo-name span {
  color: #8fbce0;
}

/* NAVIGATION */

.nav-menu {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 2px;

  list-style: none;
}

/* Every top-level navigation item */

.nav-item {
  position: relative;
}

.nav-item > a,
.drop-btn {
  min-height: 78px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  padding: 0 13px;

  border: 0;
  background: transparent;

  color: white;

  font-size: .82rem;
  font-weight: 650;

  white-space: nowrap;

  transition:
    color .2s ease,
    background .2s ease;
}

.nav-item > a:hover,
.drop-btn:hover,
.dropdown.open > .drop-btn {
  color: #b9d8f0;
  background: rgba(255,255,255,.05);
}

/* ARROW */

.arrow {
  display: inline-block;

  font-size: .8rem;

  transition: transform .2s ease;
}

.dropdown.open .arrow {
  transform: rotate(180deg);
}

/* =========================================================
   DROPDOWN MENUS
========================================================= */

.nav-item.dropdown {
  font: white;
  position: relative;
}

.dropdown-menu {
  position: absolute;
top: calc(100% - 1px);

  
  left: 0;

  width: 245px;

  padding: 8px;

  list-style: none;

  background: #fff;

  border: 1px solid var(--grey-200);
  border-radius: 0 0 12px 12px;

  box-shadow: 0 20px 50px rgba(7,27,51,.18);

  opacity: 0;
  visibility: hidden;

  transform: translateY(100px);

  transition:
    opacity .2s ease,
    visibility .2s ease,
    transform .2s ease;
}

/* Open dropdown */

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

/* Dropdown links */

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
top = 1000px;
  min-height: 42px;

  padding: 9px 12px;

  border-radius: 7px;

  color: var(--ink);

  font-size: .82rem;
  font-weight: 600;

  transition:
    background .2s ease,
    color .2s ease,
    padding-left .2s ease;
 
}

.dropdown-menu a:hover {
  background: var(--grey-100);
  color: var(--blue);
  padding-left: 17px;
}

/* =========================================================
   GET SUPPORT BUTTON
========================================================= */

.nav-cta {
  margin-left: 8px;
}

.nav-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 43px;

  padding: 0 18px;

  border-radius: 7px;

  background: linear-gradient(
    135deg,
    #ffffff,
    #d7dde2
  );

  color: var(--navy);

  font-size: .8rem;
  font-weight: 800;

  box-shadow: 0 7px 20px rgba(0,0,0,.15);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.nav-cta a:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 25px rgba(0,0,0,.22);
}

/* =========================================================
   HIDE HAMBURGER
========================================================= */



/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
  font-family: "Manrope", sans-serif;
  color: var(--navy);
}

h1,
h2 {
  letter-spacing: -.055em;
}

.eyebrow {
  margin-bottom: 15px;

  color: var(--blue);

  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #b8d6ef;
}

.section {
  position: relative;
  max-width: var(--max-width);
  margin: auto;
  padding: 110px 28px;
}

.section-number {
  position: absolute;
  top: 105px;
  right: 28px;

  color: var(--grey-300);

  font-family: "Manrope", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.section-number.light-number {
  color: rgba(255,255,255,.12);
}

.section-heading {
  margin-bottom: 55px;
}

.section-heading h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.section-heading h2 em,
.vision-section h2 span,
.funders-section h2 em {
  color: var(--blue);
  font-style: normal;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 45px;
  color: var(--grey-500);
  font-size: 1.05rem;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 50px;

  padding: 90px max(28px, calc((100vw - 1180px) / 2)) 125px;

  background:
    linear-gradient(
      115deg,
      #071b33 0%,
      #0b2c4d 48%,
      #40505f 100%
    );

  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(255,255,255,.12),
      transparent 28%
    ),
    linear-gradient(
      120deg,
      transparent 55%,
      rgba(255,255,255,.05) 55%,
      transparent 72%
    );

  pointer-events: none;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 760px;

  color: white;

  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: .92;
}

.hero h1 span {
  display: block;
  color: #b8d6ef;
}

.hero-description {
  max-width: 620px;
  margin: 30px 0 35px;

  color: #d5e0ea;

  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn {
  min-height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 0 21px;

  border: 0;
  border-radius: 7px;

  font-weight: 750;
  font-size: .9rem;

  transition: .25s ease;
}

.btn span {
  transition: transform .2s ease;
}

.btn:hover span {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--navy);
  color: white;
}

.btn-primary:hover {
  background: var(--blue);
}

.btn-white {
  background: white;
  color: var(--navy);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: white;

  font-size: .88rem;
  font-weight: 700;
}

.hero-text-link span {
  font-size: 1.1rem;
}

.hero-visual {
  min-height: 500px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";

  position: absolute;

  width: 390px;
  height: 390px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #eef1f4,
      #aeb7c0
    );

  box-shadow:
    30px 30px 80px rgba(0,0,0,.2);

  opacity: .95;
}

.hero-visual::after {
  content: "";

  position: absolute;

  width: 310px;
  height: 310px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #66727e,
      #dfe3e6
    );

  opacity: .6;
}

.hero-visual-card {
  position: relative;
  z-index: 3;

  width: min(350px, 80%);

  padding: 45px 40px;

  border: 1px solid rgba(255,255,255,.5);
  border-radius: 18px;

  background: rgba(255,255,255,.9);

  color: var(--navy);

  box-shadow: 0 30px 70px rgba(0,0,0,.2);
}

.quote-mark {
  display: block;

  color: var(--blue);

  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: .5;
}

.hero-visual-card p {
  margin: 25px 0;

  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 750;
  line-height: 1.4;
}

.visual-line {
  width: 45px;
  height: 3px;
  margin-bottom: 13px;
  background: var(--blue);
}

.visual-caption {
  color: var(--grey-500);
  font-size: .75rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
}

.orbit-one {
  width: 510px;
  height: 510px;
}

.orbit-two {
  width: 610px;
  height: 610px;
}

.floating-label {
  position: absolute;
  z-index: 4;

  padding: 13px 16px;

  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;

  background: rgba(7,27,51,.7);
  backdrop-filter: blur(10px);

  box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

.floating-label strong,
.floating-label span {
  display: block;
}

.floating-label strong {
  color: white;
  font-size: .7rem;
  letter-spacing: .12em;
}

.floating-label span {
  color: #b8c8d8;
  font-size: .72rem;
}

.label-one {
  top: 65px;
  right: 0;
}

.label-two {
  bottom: 65px;
  left: 0;
}

.hero-bottom {
  position: absolute;
  z-index: 4;

  bottom: 0;
  left: 0;
  right: 0;

  max-width: 1180px;
  margin: auto;
  padding: 20px 28px;

  display: flex;
  gap: 45px;

  border-top: 1px solid rgba(255,255,255,.15);

  color: #afc0d0;

  font-size: .73rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .14em;
}

/* =========================================================
   INTRO
========================================================= */

.intro-section {
  padding-top: 125px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 80px;
  align-items: end;
}

.heading-summary {
  color: var(--grey-500);
  font-size: 1.05rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: start;
}

.intro-main {
  max-width: 700px;
}

.intro-main p {
  margin-bottom: 22px;
}

.large-copy {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #34475b;
}

.values-panel {
  padding: 28px;

  background: var(--gradient-grey);

  border-radius: 2px 22px 2px 22px;

  box-shadow: var(--shadow-sm);
}

.panel-label {
  display: block;
  margin-bottom: 10px;

  color: var(--blue);

  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.value-row {
  padding: 16px 0;

  display: flex;
  align-items: center;
  gap: 20px;

  border-bottom: 1px solid rgba(7,27,51,.1);
}

.value-row:last-child {
  border-bottom: 0;
}

.value-row span {
  color: var(--grey-500);
  font-size: .72rem;
}

.value-row strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}

/* =========================================================
   MISSION
========================================================= */

.dark-section {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      120deg,
      var(--navy),
      var(--navy-2) 60%,
      #52606d
    );

  color: white;
}

.mission-section {
  padding: 120px max(28px, calc((100vw - 1180px) / 2));
}

.mission-section::after {
  content: "";

  position: absolute;
  width: 600px;
  height: 600px;
  right: -250px;
  top: -250px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.12);
}

.mission-layout {
  position: relative;
  z-index: 2;

  max-width: 1180px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}

.mission-section h2 {
  color: white;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .98;
}

.mission-section h2 em {
  color: #b9d8f0;
  font-style: normal;
}

.mission-copy {
  position: relative;
  padding-top: 55px;
}

.large-number {
  position: absolute;
  top: 0;
  right: 0;

  color: rgba(255,255,255,.12);

  font-family: "Manrope", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.mission-copy h3 {
  margin-bottom: 20px;
  color: white;
  font-size: 1.5rem;
}

.mission-copy p {
  margin-bottom: 20px;
  color: #cbd8e4;
}

.statement {
  margin-top: 30px;
  padding: 20px 0;

  border-top: 1px solid rgba(255,255,255,.2);

  color: white;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

/* =========================================================
   VISION
========================================================= */

.vision-section {
  background: var(--white);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}

.vision-section h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
}

.vision-copy p {
  margin-bottom: 20px;
}

/* =========================================================
   GREY SECTIONS
========================================================= */

.grey-section {
  position: relative;
  background: var(--gradient-grey);
}

/* =========================================================
   OBJECTIVES
========================================================= */

.objectives-section {
  padding: 110px max(28px, calc((100vw - 1180px) / 2));
}

.objectives-section .section-heading,
.objectives-section .section-intro,
.objective-list {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.objective-list {
  border-top: 1px solid var(--grey-300);
color: var(--navy);
}

.objective {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 25px;

  padding: 25px 0;

  border-bottom: 1px solid var(--grey-300);

  transition: padding .25s ease, background .25s ease;
}

.objective span {
  color: var(--navy);
  font-size: .72rem;
  font-weight: 800;
}

.objective p {
  max-width: 850px;
  font-size: 1rem;
}

.objective:hover {
  padding-left: 12px;
}

/* =========================================================
   SERVICES
========================================================= */

.services-section {
  position: relative;
  padding: 115px max(28px, calc((100vw - 1180px) / 2));

  background:
    linear-gradient(
      135deg,
      #071b33 0%,
      #0d304f 52%,
      #56636f 100%
    );

  color: white;
}

.services-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 100% 0,
      rgba(255,255,255,.12),
      transparent 30%
    );

  pointer-events: none;
}

.services-header {
  position: relative;
  z-index: 2;

  max-width: 1180px;
  margin: auto auto 60px;

  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 100px;
  align-items: end;
}

.services-header h2 {
  color: white;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
}

.services-header h2 em {
  color: #b9d8f0;
  font-style: normal;
}

.services-header > p {
  color: #c7d5e1;
}

.services-grid {
  position: relative;
  z-index: 2;

  max-width: 1180px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;

  min-height: 450px;
  padding: 32px;

  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;

  background: rgba(255,255,255,.075);

  transition: transform .3s ease, background .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.12);
}

.service-card-light {
  background: linear-gradient(145deg, #e9edf0, #c7ced5);
  color: var(--ink);
}

.service-card-light h3 {
  color: var(--navy);
}

.service-top {
  display: flex;
  justify-content: space-between;

  margin-bottom: 55px;

  color: #9fc4e2;

  font-size: .72rem;
  font-weight: 800;
}

.service-card-light .service-top {
  color: var(--blue);
}

.service-arrow {
  font-size: 1.1rem;
}

.service-card h3 {
  margin-bottom: 18px;

  color: white;

  font-size: 1.8rem;
  line-height: 1.05;
}

.service-card p {
  margin-bottom: 18px;
  color: #c9d5df;
  font-size: .9rem;
}

.service-card-light p {
  color: #4d5c6b;
}

.service-card ul {
  padding-left: 18px;
  color: #c9d5df;
  font-size: .84rem;
}

.service-card li {
  margin: 5px 0;
}

.service-statement {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;

  padding-top: 18px;

  border-top: 1px solid rgba(255,255,255,.18);

  color: #a9d0ee;

  font-weight: 750;
  font-size: .86rem;
}

.service-card-light .service-statement {
  color: var(--blue);
  border-color: rgba(7,27,51,.12);
}

.pill-row {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;

  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.pill-row span {
  padding: 6px 10px;

  border-radius: 999px;

  background: rgba(7,27,51,.08);

  color: var(--navy);

  font-size: .7rem;
  font-weight: 750;
}

/* =========================================================
   INVOLVEMENT
========================================================= */

.involvement-section {
  background: var(--white);
}

.centered {
  text-align: center;
}

.centered > p:last-child {
  max-width: 600px;
  margin: 12px auto 0;
  color: var(--grey-500);
}

.involvement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.involvement-grid article {
  min-height: 350px;
  padding: 30px;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--grey-200);
  border-radius: 14px;

  background: white;

  transition: .3s ease;
}

.involvement-grid article:nth-child(2) {
  background: var(--gradient-grey);
}

.involvement-grid article:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.card-number {
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
}

.involvement-grid h3 {
  margin-top: 55px;
  margin-bottom: 13px;

  font-size: 1.55rem;
}

.involvement-grid p {
  color: var(--grey-500);
  font-size: .9rem;
}

.involvement-grid a {
  margin-top: auto;
  padding-top: 30px;

  color: var(--blue);
  font-size: .84rem;
  font-weight: 800;
}

.involvement-grid a span {
  margin-left: 5px;
}

/* =========================================================
   RESEARCH
========================================================= */

.research-section {
  background: var(--grey-100);
}

.research-heading {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 100px;
  align-items: end;

  margin-bottom: 55px;
}

.research-heading h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.research-heading > p {
  color: var(--grey-500);
}

.research-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.research-grid article {
  min-height: 320px;
  padding: 35px;

  border-radius: 14px;

  background: white;
    color: rgba(255, 255, 255, 0.75);
 
}

.research-grid article:last-child {
  background: var(--navy);
  color: white;
}

.research-grid article:last-child h3 {
  color: white;
}

.research-grid span {
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
}

.research-grid h3 {
  margin: 55px 0 15px;
  font-size: 1.5rem;
}

.research-grid p {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: .9rem;
}

.research-grid article:last-child p {
  color: #bdcddd;
}

/* =========================================================
   TEAM
========================================================= */

.team-section {
  padding: 110px max(28px, calc((100vw - 1180px) / 2));
}

.team-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 100px;
  align-items: start;
}

.team-intro {
  max-width: 520px;
}

.team-intro p {
  margin-bottom: 20px;
}

.team-intro strong {
  color: var(--blue);
}

.team-placeholder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.team-placeholder div {
  min-height: 145px;
  padding: 22px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  border: 1px solid var(--grey-300);
  background: rgba(255,255,255,.65);
}

.team-placeholder span {
  color: var(--grey-500);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.team-placeholder strong {
  margin-top: 7px;
  font-family: "Manrope", sans-serif;
}

.notice {
  color: #778392;
  font-size: .75rem;
  margin-top: 15px;
}

/* =========================================================
   FUNDERS
========================================================= */

.funders-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
  align-items: start;
}

.funders-section h2 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 1;
}

.funders-copy p {
  margin-bottom: 20px;
  color: var(--grey-500);
}

.funder-placeholders {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.funder-placeholders span {
  min-width: 145px;
  height: 75px;

  display: grid;
  place-items: center;

  border: 1px solid var(--grey-200);
  background: var(--gradient-grey);

  color: var(--grey-500);

  font-size: .75rem;
  font-weight: 750;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  padding: 110px max(28px, calc((100vw - 1180px) / 2));

  background:
    linear-gradient(
      130deg,
      var(--navy),
      #0c304e 60%,
      #596672
    );
}

.contact-header {
  max-width: 1180px;
  margin: auto auto 60px;
}

.contact-header h2 {
  color: white;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: .9;
}

.contact-header h2 em {
  color: #b9d8f0;
  font-style: normal;
}

.contact-header > p:last-child {
  max-width: 500px;
  margin-top: 25px;
  color: #c5d3df;
}

/* =========================================================
   HORIZONTAL FORMS
========================================================= */

.forms-grid {
  position: relative;

  max-width: 1180px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;

  align-items: stretch;
}

/* Gradient divider between the forms */

.forms-grid::before {
  content: "";

  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 50%;

  width: 3px;

  transform: translateX(-50%);

  background:
    linear-gradient(
      to bottom,
      transparent 0%,
      #9aa5af 15%,
      #ffffff 50%,
      #9aa5af 85%,
      transparent 100%
    );

  z-index: 5;
}

/* Individual forms */

.contact-form {
  position: relative;

  padding: 42px 48px;

  background: #ffffff;

  border: 0;
  border-radius: 0;

  box-shadow: none;

  min-width: 0;
}

/* First form */

.forms-grid > .contact-form:first-child {
  border-radius: 18px 0 0 18px;
  padding-right: 65px;
}

/* Second form */

.forms-grid > .contact-form:last-child {
  border-radius: 0 18px 18px 0;
  padding-left: 65px;
}

/* Subtle gradient edge around the complete form area */

.forms-grid {
  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f1f3f5 48%,
      #d5dbe0 100%
    );

  padding: 1px;

  box-shadow:
    0 20px 55px rgba(7, 27, 51, .12);
}

/* Put the forms back over the gradient border */

.forms-grid > .contact-form {
  background: #ffffff;
}

/* Form heading */

.form-heading {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 14px;
}

.form-heading > span {
  color: var(--blue);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.form-heading h3 {
  color: var(--navy);
  font-size: 1.45rem;
}

/* Form introduction */

.form-intro {
  margin-bottom: 28px;

  color: var(--grey-500);

  font-size: .88rem;
  line-height: 1.65;
}

/* Form fields */

.contact-form label {
  display: block;

  margin: 17px 0;

  color: var(--ink);

  font-size: .78rem;
  font-weight: 700;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;

  margin-top: 7px;
  padding: 12px 13px;

  border: 1px solid var(--grey-300);
  border-radius: 7px;

  outline: none;

  background: #f9fafb;

  color: var(--ink);

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);

  background: white;

  box-shadow:
    0 0 0 3px rgba(23, 105, 168, .1);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Consent */

.consent {
  display: flex !important;
  align-items: flex-start;

  gap: 9px;

  font-weight: 500 !important;
}

.consent input {
  width: auto !important;
  margin-top: 4px;

  accent-color: var(--blue);
}

/* Button */

.contact-form .btn {
  margin-top: 10px;
}

/* Form response */

.form-message {
  min-height: 22px;
  margin-top: 12px;

  color: #16734b;

  font-size: .8rem;
  font-weight: 700;
}



/* =========================================================
   FOOTER
========================================================= */

footer {
  background: #050f1d;
  color: #c8d4df;
}

.footer-main {
  max-width: 1180px;
  margin: auto;
  padding: 75px 28px;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo .logo-name {
  color: white;
}

.footer-brand p {
  color: #899bad;
  font-size: .85rem;
}

.footer-links h4 {
  margin-bottom: 18px;

  color: white;

  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-links a {
  display: block;

  margin: 8px 0;

  color: #91a2b3;

  font-size: .82rem;

  transition: color .2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1180px;
  margin: auto;

  padding: 18px 28px 25px;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  border-top: 1px solid rgba(255,255,255,.1);

  color: #6f8091;

  font-size: .7rem;
}
.footer-main {
  max-width: 1180px;
  margin: auto;
  padding: 75px 28px;

  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 50px;
}

.footer-address address {
  margin: 0;
  color: #91a2b3;
  font-size: .82rem;
  line-height: 1.8;
  font-style: normal;
}


/* =========================================================
   RESPONSIVE
========================================================= */

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1150px) {

  .navbar {
    padding: 0 20px;
    gap: 18px;
  }

  .nav-menu {
    gap: 0;
  }

  .nav-item > a,
  .drop-btn {
    padding: 0 8px;
    font-size: .76rem;
  }

  .nav-cta a {
    padding: 0 13px;
  }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

  .navbar {
    min-height: 70px;
    flex-wrap: wrap;
    padding: 12px 20px;
  }

  .nav-menu {
    width: 100%;

    justify-content: flex-start;

    overflow-x: auto;

    padding-bottom: 4px;

    scrollbar-width: thin;
  }

  .nav-item > a,
  .drop-btn {
    min-height: 46px;
  }

  .dropdown-menu {
    position: fixed;

    top: 116px;
    left: auto;

    width: 230px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .split-heading,
  .intro-grid,
  .mission-layout,
  .vision-grid,
  .services-header,
  .research-heading,
  .team-layout,
  .funders-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .services-grid,
  .involvement-grid,
  .research-grid,
  .forms-grid,
  .forms-grid.three {
    grid-template-columns: 1fr 1fr;
  }


  .forms-grid.three {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #e9edf0,
      #cfd5da
    );

  padding: 1px;
}

/* Vertical gradient separators */

.forms-grid.three::before {
  left: 33.333%;
  width: 3px;
}

.forms-grid.three::after {
  content: "";

  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 66.666%;

  width: 3px;

  transform: translateX(-50%);

  background:
    linear-gradient(
      to bottom,
      transparent,
      #9aa5af 15%,
      #ffffff 50%,
      #9aa5af 85%,
      transparent
    );

  z-index: 5;
}

.forms-grid.three > .contact-form {
  padding: 38px 32px;
}

.forms-grid.three > .contact-form:first-child {
  border-radius: 17px 0 0 17px;
  padding-right: 45px;
}

.forms-grid.three > .contact-form:last-child {
  border-radius: 0 17px 17px 0;
  padding-left: 45px;
}

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .navbar {
    min-height: auto;
    padding: 14px 18px;
  }

  .logo-name {
    font-size: 1.05rem;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  /*
     Keep the navigation horizontal.
     It scrolls instead of becoming a hamburger menu.
  */

  .nav-menu {
    width: 100%;

    display: flex;

    justify-content: flex-start;

    gap: 2px;

    overflow-x: auto;
    overflow-y: visible;

    padding-bottom: 3px;
  }

  .nav-item > a,
  .drop-btn {
    min-height: 42px;

    padding: 0 9px;

    font-size: .73rem;
  }

  .nav-cta {
    flex-shrink: 0;
  }

  .nav-cta a {
    min-height: 40px;
    padding: 0 13px;
  }

  /*
     Dropdowns remain dropdowns on mobile.
  */

  .dropdown-menu {
    position: fixed;

    top: 108px;
    left: 10px;

    width: min(245px, calc(100vw - 20px));

    max-height: calc(100vh - 125px);

    overflow-y: auto;
  }

  .hero {
    padding:
      70px
      20px
      100px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-visual::before {
    width: 280px;
    height: 280px;
  }

  .hero-visual::after {
    width: 220px;
    height: 220px;
  }

  .hero-visual-card {
    width: 85%;
    padding: 32px 27px;
  }

  .label-one {
    top: 30px;
    right: 0;
  }

  .label-two {
    bottom: 30px;
    left: 0;
  }

  .hero-bottom {
    gap: 15px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .section,
  .objectives-section,
  .team-section,
  .contact-section,
  .services-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-number {
    display: none;
  }

  .services-grid,
  .involvement-grid,
  .research-grid,
  .forms-grid,
  .forms-grid.three {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 25px;
  }

  .service-statement,
  .pill-row {
    position: static;

    margin-top: 30px;
  }

  .team-placeholder {
    grid-template-columns: 1fr;
  }

  .funder-placeholders {
    flex-direction: column;
  }

  .funder-placeholders span {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 55px 20px;
  }

  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;

    flex-direction: column;
  }
}
section[id] {
  scroll-margin-top: 95px;
}
@media (max-width: 650px) {
  section[id] {
    scroll-margin-top: 120px;
  }
}

/* =========================================================
   INDIVIDUAL FORM PAGES
========================================================= */

.form-page-section {
  position: relative;

  min-height: 100vh;
  padding: 120px 28px;

  background: var(--white);

  scroll-margin-top: 78px;
}

.form-page-section:nth-of-type(even) {
  background: var(--gradient-grey);
}

.form-page-content {
  max-width: 1050px;
  margin: auto;

  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;

  align-items: start;
}

.form-page-intro {
  position: sticky;
  top: 120px;
}

.form-page-intro h2 {
  margin-bottom: 25px;

  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .95;
}

.form-page-intro > p:last-child {
  max-width: 430px;

  color: var(--grey-500);
  font-size: 1rem;
}

/* Individual form */

.form-page-section .contact-form {
  width: 100%;
  padding: 42px;

  background: white;

  border: 1px solid var(--grey-200);
  border-radius: 18px;

  box-shadow: var(--shadow-lg);
}

/* Gradient decorative line */

.form-page-section::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 1px;
  height: 100%;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(23,105,168,.25),
      transparent
    );

  pointer-events: none;
}

/* Dark form page */

.dark-form-section {
  background:
    linear-gradient(
      130deg,
      var(--navy),
      var(--navy-2) 60%,
      #596672
    );

  color: white;
}

.dark-form-section h2 {
  color: white;
}

.dark-form-section .form-page-intro > p:last-child {
  color: #c5d3df;
}
@media (max-width: 800px) {

  .form-page-section {
    padding: 80px 20px;
  }

  .form-page-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-page-intro {
    position: static;
  }

  .form-page-section::before {
    display: none;
  }

  .form-page-section .contact-form {
    padding: 28px 22px;
  }
}
/* =========================================================
   INDIVIDUAL FORM VIEWS
========================================================= */

.form-page {
  display: none;

  min-height: calc(100vh - 78px);

  padding: 100px 28px;

  scroll-margin-top: 78px;
}

/* Only the selected form is displayed */

.form-page.active {
  display: block;
}

.form-page-inner {
  max-width: 1180px;
  margin: auto;

  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;

  align-items: start;
}

.form-page-heading {
  padding-top: 30px;
}

.form-page-heading h2 {
  margin-bottom: 28px;

  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: .92;
}

.form-page-heading h2 em {
  color: var(--blue);
  font-style: normal;
}

.form-page-heading > p:last-child {
  max-width: 470px;

  color: var(--grey-500);

  font-size: 1rem;
}

.contact-page,
.referral-page {
  background:
    linear-gradient(
      130deg,
      var(--navy),
      var(--navy-2) 60%,
      #596672
    );
}

.contact-page .form-page-heading h2 {
  color: white;
}

.contact-page .form-page-heading > p:last-child {
  color: #c5d3df;
}

.complaint-page {
  background: var(--gradient-grey);
}

.form-page .contact-form {
  width: 100%;

  padding: 42px;

  background: white;

  border: 1px solid var(--grey-200);
  border-radius: 18px;

  box-shadow: var(--shadow-lg);
}
/* =========================================================
   LIGHT SERVICE CARDS
========================================================= */

.service-card-light,
.service-card-mental-health {
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f3f5f7 38%,
      #e4e8ec 72%,
      #d5dbe1 100%
    );

  color: var(--navy);

  border: 1px solid rgba(7, 27, 51, .10);
}

.service-card-light h3,
.service-card-mental-health h3 {
  color: var(--navy);
}

.service-card-light p,
.service-card-mental-health p {
  color: #34475b;
}

.service-card-light .service-top,
.service-card-mental-health .service-top {
  color: var(--blue);
}

.service-card-light .service-arrow,
.service-card-mental-health .service-arrow {
  color: var(--navy);
}

.service-card-light:hover,
.service-card-mental-health:hover {
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #eef1f4 45%,
      #dce2e7 100%
    );
}
/* =========================================================
   MODERN NAVY TEXT
========================================================= */

/* Main text */
body {
  color: #142338;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #071b33;
}

/* Strong / emphasized text */
strong,
b {
  color: #071b33;
}

/* Form text */
.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea {
  color: #142338;
}

/* Navigation on light backgrounds */
```css
/* =========================================================
   NAVIGATION TEXT
========================================================= */

/* Main navigation sits on the navy header */
.nav-item > a,
.nav-item > .drop-btn {
  color: #ffffff;
}

/* Main navigation hover */
.nav-item > a:hover,
.nav-item > .drop-btn:hover,
.dropdown.open > .drop-btn {
  color: #b9d8f5;
}

/* Dropdown menus have a white background */
.dropdown-menu {
  background: #ffffff;
}

/* Dropdown links need dark text */
.dropdown-menu a {
  color: #142338;
}

/* Dropdown link hover */
.dropdown-menu a:hover {
  color: #1769a8;
  background: #f1f4f7;
}

/* =========================================================
   NAVIGATION TEXT
========================================================= */

/* General links */
a {
  color: #071b33;
}

/* Keep your blue accent links blue */
.involvement-grid a,
.hero-text-link,
.panel-label,
.card-number,
.footer-links a:hover {
  color: #1769a8;
}
.service-card-light {
  background:
    linear-gradient(
      135deg,
      #f4f6f8 0%,
      #e3e7eb 50%,
      #cbd1d7 100%
    );

  color: #071b33;
}

.service-card-light h3,
.service-card-light p {
  color: #071b33;
}

.service-card-light .service-top {
  color: #1769a8;
}

.service-card-light .service-statement {
  color: #071b33;
  border-color: rgba(7, 27, 51, .15);
}

.service-card-light .pill-row span {
  color: #071b33;
  background: rgba(7, 27, 51, .08);
}
.site-header {
  background: #071b33;
}

.nav-item > a,
.drop-btn {
  color: #ffffff;
}

.nav-item > a:hover,
.drop-btn:hover {
  color: #b9d8f5;
}
```css
/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 900px) {

  /* Keep the navigation area navy */
  .nav-menu {
    background: transparent;
  }

  /* Mobile navigation links */
  .nav-item > a,
  .drop-btn {
    color: #ffffff;
  }

  /* Hover / active state */
  .nav-item > a:hover,
  .drop-btn:hover,
  .dropdown.open > .drop-btn {
    color: #b9d8f5;
    background: rgba(255, 255, 255, .06);
  }

  /* Mobile dropdown */
  .dropdown-menu {
    background: #ffffff;
    border: 1px solid #e5e9ee;
    box-shadow: 0 15px 35px rgba(7, 27, 51, .20);
  }

  /* Dropdown links */
  .dropdown-menu a {
    color: #142338;
  }

  .dropdown-menu a:hover {
    color: #1769a8;
    background: #f1f4f7;
  }
}

```css
/* =========================================================
   RESPONSIVE NAVIGATION
========================================================= */



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

  .navbar {
    min-height: 70px;
    padding: 12px 20px;
    gap: 15px;
  }

  .nav-menu {
    gap: 0;
  }

  .nav-item > a,
  .drop-btn {
    padding: 0 8px;
    font-size: .76rem;
  }

  .nav-cta a {
    padding: 0 13px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  /* Header */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  /* Top row */
  .navbar {
    width: 100%;
    min-height: 68px;

    display: flex;
    align-items: center;

    padding: 10px 18px;

    gap: 10px;
  }

  /* Logo */
  .logo {
    flex: 1;
    min-width: 0;
  }

  .logo-image {
    width: 38px;
    height: 38px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .logo-name {
    font-size: 1rem;
    white-space: nowrap;
  }


  /* =====================================================
     HAMBURGER
  ===================================================== */

  .menu-toggle {
    display: flex !important;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    flex-direction: column;
    gap: 5px;

    flex-shrink: 0;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;

    background: rgba(255,255,255,.06);

    color: white;

    cursor: pointer;
  }

  .menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: white;

    border-radius: 2px;

    transition: .2s ease;
  }

  .menu-toggle:hover {
    background: rgba(255,255,255,.12);
  }


  /* =====================================================
     MOBILE NAVIGATION MENU
  ===================================================== */

  .nav-menu {
    position: absolute;

    top: 68px;
    left: 0;
    right: 0;

    width: 100%;

    display: none;

    flex-direction: column;
    align-items: stretch;

    padding: 8px 14px 16px;

    background: #071b33;

    border-top: 1px solid rgba(255,255,255,.1);

    box-shadow:
      0 18px 35px rgba(0,0,0,.2);

    overflow: visible;
  }

  /* When JavaScript adds .open */
  .nav-menu.open {
    display: flex;
  }


  /* =====================================================
     NAV ITEMS
  ===================================================== */

  .nav-item {
    width: 100%;
  }

  .nav-item > a,
  .drop-btn {
    width: 100%;
    min-height: 48px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 12px;

    border-radius: 7px;

    color: white;

    font-size: .84rem;
    font-weight: 650;

    background: transparent;
  }

  .nav-item > a:hover,
  .drop-btn:hover,
  .dropdown.open > .drop-btn {
    color: #b9d8f5;
    background: rgba(255,255,255,.06);
  }


  /* =====================================================
     MOBILE DROPDOWNS
  ===================================================== */

  .dropdown-menu {
    position: static;

    width: 100%;

    margin: 2px 0 6px;

    padding: 5px;

    background: #ffffff;

    border: 1px solid #e5e9ee;
    border-radius: 8px;

    box-shadow: none;

    opacity: 0;
    visibility: hidden;

    transform: none;

    max-height: 0;
    overflow: hidden;

    transition:
      opacity .2s ease,
      max-height .25s ease,
      visibility .2s ease;
  }

  /* Open dropdown */
  .dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;

    max-height: 500px;
  }

  .dropdown-menu a {
    min-height: 42px;

    color: #142338;

    padding: 9px 12px;

    font-size: .8rem;
  }

  .dropdown-menu a:hover {
    color: #1769a8;
    background: #f1f4f7;
    padding-left: 16px;
  }


  /* =====================================================
     SUPPORT BUTTON
  ===================================================== */

  .nav-cta {
    width: 100%;

    margin: 8px 0 0;
  }

  .nav-cta a {
    width: 100%;

    min-height: 45px;

    color: #071b33;

    background: white;

    border-radius: 7px;
  }
}

```css
/* =========================================================
   RESPONSIVE FOOTER
========================================================= */

@media (max-width: 650px) {

  footer {
    width: 100%;
    overflow: hidden;
  }

  /* Main footer */
  .footer-main {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr;

    gap: 38px;

    padding: 50px 20px 40px;
  }

  /* Brand */
  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    margin-bottom: 15px;
  }

  .footer-logo .logo-image {
    width: 36px;
    height: 36px;
  }

  .footer-logo .logo-name {
    font-size: 1rem;
  }

  .footer-brand p {
    max-width: 330px;

    color: #91a2b3;

    font-size: .82rem;
    line-height: 1.7;
  }


  /* Footer link columns */
  .footer-links {
    width: 100%;
  }

  .footer-links h4 {
    margin-bottom: 13px;

    color: white;

    font-size: .72rem;
    letter-spacing: .12em;
  }

  .footer-links a {
    margin: 7px 0;

    color: #91a2b3;

    font-size: .8rem;
    line-height: 1.6;
  }

  .footer-links a:hover {
    color: white;
  }


  /* Address */
  .footer-address {
    width: 100%;
  }

  .footer-address address {
    color: #91a2b3;

    font-size: .8rem;
    line-height: 1.8;

    word-break: normal;
    overflow-wrap: break-word;
  }


  /* Footer bottom */
  .footer-bottom {
    width: 100%;

    padding: 18px 20px 22px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 8px;

    border-top: 1px solid rgba(255,255,255,.1);

    color: #6f8091;

    font-size: .68rem;

    line-height: 1.6;
  }

  .footer-bottom span {
    max-width: 100%;
  }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

  .footer-main {
    padding-left: 16px;
    padding-right: 16px;

    gap: 32px;
  }

  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-brand p,
  .footer-links a,
  .footer-address address {
    font-size: .77rem;
  }
}

.thank-you-page {
  min-height: 100vh;
  min-height: 100svh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px 20px;
}

/* =========================================
   CARD
========================================= */

.thank-you-card {
  width: 100%;
  max-width: 680px;

  background: #ffffff;

  padding: clamp(35px, 7vw, 70px);

  text-align: center;

  border-radius: 18px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08);
}

/* =========================================
   SUCCESS ICON
========================================= */

.success-icon {
  width: 64px;
  height: 64px;

  margin: 0 auto 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #1f6f5b;
  color: #ffffff;

  font-size: 32px;
  font-weight: 700;
}

/* =========================================
   EYEBROW
========================================= */

.eyebrow {
  margin: 0 0 12px;

  color: #1f6f5b;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================
   HEADING
========================================= */

.thank-you-card h1 {
  margin: 0 0 20px;

  font-size: clamp(42px, 8vw, 72px);

  line-height: 1;

  letter-spacing: -0.04em;
}

/* =========================================
   MAIN MESSAGE
========================================= */

.thank-you-message {
  margin: 0 auto 15px;

  max-width: 520px;

  font-size: clamp(18px, 3vw, 22px);

  line-height: 1.5;

  font-weight: 600;
}

/* =========================================
   SECONDARY MESSAGE
========================================= */

.thank-you-note {
  margin: 0 auto;

  max-width: 520px;

  font-size: 16px;

  line-height: 1.7;

  color: #5c6863;
}

/* =========================================
   BUTTON
========================================= */

.return-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  margin-top: 32px;

  padding: 15px 24px;

  background: #1f6f5b;
  color: #ffffff;

  text-decoration: none;

  border-radius: 8px;

  font-size: 16px;
  font-weight: 600;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.return-button:hover {
  background: #155443;

  transform: translateY(-2px);
}

.return-button span {
  font-size: 20px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .thank-you-page {
    padding: 20px 14px;
  }

  .thank-you-card {
    padding: 40px 22px;

    border-radius: 14px;
  }

  .success-icon {
    width: 56px;
    height: 56px;

    margin-bottom: 22px;

    font-size: 27px;
  }

  .thank-you-card h1 {
    font-size: clamp(40px, 13vw, 56px);

    margin-bottom: 18px;
  }

  .thank-you-message {
    font-size: 18px;
  }

  .thank-you-note {
    font-size: 15px;
    line-height: 1.65;
  }

  .return-button {
    width: 100%;

    padding: 15px 18px;

    margin-top: 28px;
  }
}

/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 360px) {

  .thank-you-page {
    padding: 15px 10px;
  }

  .thank-you-card {
    padding: 32px 18px;
  }

  .thank-you-card h1 {
    font-size: 40px;
  }

  .thank-you-message {
    font-size: 17px;
  }

  .thank-you-note {
    font-size: 14px;
  }
}

/* =========================================================
   RESPONSIVE NAVIGATION
   DESKTOP = HORIZONTAL
   MOBILE = HAMBURGER MENU
========================================================= */

/* ---------------------------------------------------------
   DESKTOP
--------------------------------------------------------- */

.menu-toggle {
  display: none;
}


/* ---------------------------------------------------------
   TABLET / MOBILE
--------------------------------------------------------- */

@media (max-width: 900px) {

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbar {
    position: relative;

    min-height: 68px;

    display: flex;
    align-items: center;

    padding: 10px 18px;

    gap: 10px;
  }

  /* Logo stays on the left */

  .logo {
    flex: 1;
    min-width: 0;
  }

  .logo-image {
    width: 38px;
    height: 38px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .logo-name {
    font-size: 1rem;
    white-space: nowrap;
  }


  /* =====================================================
     HAMBURGER BUTTON
  ===================================================== */

  .menu-toggle {
    display: flex !important;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    padding: 0;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;

    background: rgba(255,255,255,.06);

    color: white;

    cursor: pointer;
  }

  .menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: white;

    border-radius: 2px;

    transition: transform .2s ease;
  }

  .menu-toggle:hover {
    background: rgba(255,255,255,.12);
  }


  /* =====================================================
     MOBILE NAVIGATION PANEL
  ===================================================== */

  .nav-menu {
    position: absolute;

    top: 68px;
    left: 0;
    right: 0;

    width: 100%;

    display: none;

    flex-direction: column;
    align-items: stretch;

    gap: 2px;

    padding: 10px 14px 16px;

    background: #071b33;

    border-top: 1px solid rgba(255,255,255,.10);

    box-shadow:
      0 18px 35px rgba(0,0,0,.22);

    overflow: visible;
  }

  /* JavaScript adds .open */

  .nav-menu.open {
    display: flex;
  }


  /* =====================================================
     MOBILE NAV ITEMS
  ===================================================== */

  .nav-item {
    width: 100%;
  }

  .nav-item > a,
  .drop-btn {
    width: 100%;

    min-height: 48px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 12px;

    border-radius: 7px;

    color: #ffffff;

    background: transparent;

    font-size: .84rem;
    font-weight: 650;
  }

  .nav-item > a:hover,
  .drop-btn:hover,
  .dropdown.open > .drop-btn {
    color: #b9d8f5;

    background: rgba(255,255,255,.06);
  }


  /* =====================================================
     MOBILE DROPDOWNS
  ===================================================== */

  .dropdown-menu {
    position: static;

    width: 100%;

    margin: 2px 0 6px;

    padding: 5px;

    background: #ffffff;

    border: 1px solid #e5e9ee;

    border-radius: 8px;

    box-shadow: none;

    opacity: 0;

    visibility: hidden;

    transform: none;

    max-height: 0;

    overflow: hidden;

    transition:
      opacity .2s ease,
      max-height .25s ease,
      visibility .2s ease;
  }

  .dropdown.open .dropdown-menu {
    opacity: 1;

    visibility: visible;

    max-height: 500px;
  }

  .dropdown-menu a {
    width: 100%;

    min-height: 42px;

    display: flex;

    align-items: center;

    padding: 9px 12px;

    color: #142338;

    font-size: .8rem;
  }

  .dropdown-menu a:hover {
    color: #1769a8;

    background: #f1f4f7;

    padding-left: 16px;
  }


  /* =====================================================
     SUPPORT BUTTON
  ===================================================== */

  .nav-cta {
    width: 100%;

    margin: 8px 0 0;
  }

  .nav-cta a {
    width: 100%;

    min-height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #071b33;

    border-radius: 7px;
  }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

  .navbar {
    padding: 9px 14px;
  }

  .nav-menu {
    top: 64px;

    padding: 8px 12px 14px;
  }

  .logo-name {
    font-size: .95rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }
}
/* =========================================================
DONATION PAYMENT SECTION
========================================================= */

.donation-payment-box {
width: 100%;
max-width: 700px;
margin: 50px auto 0;
padding: 40px;

background: #ffffff;
box-sizing: border-box;

border: 1px solid rgba(0, 0, 0, 0.08);
}

/* INTRO */

.donation-intro {
margin: 0 0 30px;

color: #5e696b;
line-height: 1.7;
}

/* BUTTON CONTAINER */

.donation-buttons {
display: flex;
flex-direction: column;
gap: 14px;
}

/* PAYMENT BUTTON */

.donation-btn {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;

width: 100%;
min-height: 72px;
padding: 16px 22px;

box-sizing: border-box;

color: #ffffff;
text-decoration: none;

transition:
transform 0.2s ease,
box-shadow 0.2s ease;
}

.donation-btn:hover {
transform: translateY(-2px);

box-shadow:
0 8px 20px rgba(0, 0, 0, 0.12);
}

/* BUTTON TEXT */

.donation-btn strong {
display: block;

font-family: "Manrope", sans-serif;
font-size: 16px;
font-weight: 700;

margin-bottom: 4px;
}

.donation-btn small {
display: block;

font-family: "Inter", sans-serif;
font-size: 12px;
font-weight: 400;

opacity: 0.85;
}

/* ARROW */

.donation-btn-arrow {
flex-shrink: 0;

font-size: 22px;
font-weight: 400;
}

/* PAYPAL */

.paypal-btn {
background: #0070ba;
}

.paypal-btn:hover {
background: #005ea6;
}

/* JUSTGIVING */

.justgiving-btn {
background: #ad29b6;
}

.justgiving-btn:hover {
background: #90219a;
}

/* STRIPE */

.stripe-btn {
background: #635bff;
}

.stripe-btn:hover {
background: #5047e5;
}

/* SECURITY NOTE */

.donation-security {
margin: 25px 0 0;

font-size: 12px;
line-height: 1.6;

color: #7a8587;
}

/* MOBILE */

@media (max-width: 600px) {

.donation-payment-box {
margin-top: 35px;
padding: 25px 20px;
}

.donation-btn {
min-height: 68px;
padding: 14px 16px;
}

.donation-btn strong {
font-size: 14px;
}

.donation-btn small {
font-size: 11px;
}

}
/* =========================================================
FLOATING HOME BUTTON
========================================================= */

.floating-home {
position: fixed;

right: 25px;
bottom: 25px;

width: 52px;
height: 52px;

display: flex;
align-items: center;
justify-content: center;

background: #168f88;
color: #ffffff;

border-radius: 50%;

text-decoration: none;

box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

z-index: 9999;

transition:
transform 0.25s ease,
background 0.25s ease,
box-shadow 0.25s ease;
}

.floating-home:hover {
background: #102f35;

transform: translateY(-4px);

box-shadow:
0 12px 30px rgba(0, 0, 0, 0.22);
}

.home-icon {
font-size: 27px;
line-height: 1;

font-family: Arial, sans-serif;
}

/* MOBILE */

@media (max-width: 600px) {

.floating-home {
width: 46px;
height: 46px;

right: 18px;
bottom: 18px;


}

.home-icon {
font-size: 24px;
}

}

* /* =====================================================
   ADVOConnect — TRUSTEES
   Uses the existing Skywave colour variables
   ===================================================== */


/* =====================================================
   TEAM SECTION
   ===================================================== */

.team-section {
  position: relative;
  padding: 90px 0 100px;
  background: var(--gradient-grey);
  overflow: hidden;
}


/* Subtle blue decorative glow */
.team-section::before {
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  top: -180px;
  right: -160px;

  background: rgba(39, 167, 232, 0.08);

  border-radius: 50%;

  pointer-events: none;
}


/* =====================================================
   SECTION HEADING
   ===================================================== */

.team-section .section-heading {
  position: relative;
  z-index: 1;

  width: min(850px, 92%);
  margin: 0 auto 50px;

  text-align: center;
}

.team-section .section-heading .eyebrow {
  margin: 0 0 12px;

  font-size: 0.85rem;
  font-weight: 800;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--blue);
}

.team-section .section-heading h2 {
  margin: 0;

  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;

  color: var(--navy);
}


/* Small line underneath heading */
.team-section .section-heading::after {
  content: "";

  display: block;

  width: 55px;
  height: 4px;

  margin: 22px auto 0;

  background: var(--blue);

  border-radius: 10px;
}


/* =====================================================
   INTRODUCTION
   ===================================================== */

.team-intro {
  position: relative;
  z-index: 1;

  width: min(820px, 92%);
  margin: 0 auto 65px;

  text-align: center;

  color: var(--ink-soft);
}

.team-intro .large-copy {
  margin: 0 0 20px;

  font-size: 1.35rem;
  line-height: 1.65;
  font-weight: 500;

  color: var(--navy-2);
}

.team-intro p {
  margin-bottom: 18px;

  font-size: 1rem;
  line-height: 1.75;
}

.team-intro strong {
  display: inline-block;

  margin-top: 12px;

  font-size: 1rem;
  font-weight: 700;

  color: var(--blue);
}


/* =====================================================
   TRUSTEE GRID
   ===================================================== */

.team-grid {
  position: relative;
  z-index: 1;

  width: min(var(--max-width), 92%);
  margin: 0 auto;

  display: grid;

  /*
   * Five trustees:
   *
   * Trustee 1 | Trustee 2 | Trustee 3
   * Trustee 4 | Trustee 5
   */
  grid-template-columns: repeat(3, 1fr);

  gap: 32px;
}


/* =====================================================
   TRUSTEE CARD
   ===================================================== */

.team-member {
  position: relative;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background: var(--white);

  border: var(--border-blue);

  border-radius: var(--radius);

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


/* Card hover */
.team-member:hover {
  transform: translateY(-7px);

  border-color: rgba(22, 131, 200, 0.35);

  box-shadow: var(--shadow-md);
}


/* =====================================================
   TRUSTEE PHOTO
   ===================================================== */

.team-photo {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: var(--navy-2);
}


/* Blue overlay */
.team-photo::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(6, 26, 47, 0) 45%,
      rgba(6, 26, 47, 0.25) 100%
    );

  pointer-events: none;
}


.team-photo img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}


/* Image hover */
.team-member:hover .team-photo img {
  transform: scale(1.04);
}


/* =====================================================
   TRUSTEE DETAILS
   ===================================================== */

.team-details {
  display: flex;
  flex-direction: column;

  flex: 1;

  padding: 30px;
}


/* Trustee name */
.team-details h3 {
  margin: 0 0 8px;

  font-size: 1.45rem;
  line-height: 1.25;

  font-weight: 750;

  color: var(--navy);
}


/* =====================================================
   ROLE
   ===================================================== */

.team-role {
  display: inline-flex;
  align-items: center;

  width: fit-content;

  margin: 0 0 20px;

  padding: 6px 11px;

  background: var(--blue-soft);

  border-radius: var(--radius-sm);

  font-size: 0.82rem;
  font-weight: 750;

  line-height: 1.2;

  color: var(--blue);
}


/* =====================================================
   BIOGRAPHY
   ===================================================== */

.team-biography {
  color: var(--ink-soft);
}

.team-biography p {
  margin: 0;

  font-size: 0.96rem;
  line-height: 1.75;
}


/* =====================================================
   SMALL BLUE ACCENT
   ===================================================== */

.team-details::before {
  content: "";

  width: 35px;
  height: 3px;

  margin-bottom: 18px;

  background: var(--blue);

  border-radius: 10px;
}


/* =====================================================
   NOTICE
   ===================================================== */

.team-section .notice {
  position: relative;
  z-index: 1;

  width: min(850px, 92%);
  margin: 50px auto 0;

  padding: 18px 22px;

  background: rgba(255, 255, 255, 0.65);

  border: var(--border);

  border-radius: var(--radius-sm);

  text-align: center;

  font-size: 0.88rem;
  line-height: 1.6;

  color: var(--grey-600);
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 950px) {

  .team-section {
    padding: 75px 0 85px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .team-details {
    padding: 25px;
  }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 650px) {

  .team-section {
    padding: 60px 0 70px;
  }


  /* Heading */
  .team-section .section-heading {
    width: 90%;
    margin-bottom: 40px;
  }

  .team-section .section-heading h2 {
    font-size: 2.15rem;
  }


  /* Introduction */
  .team-intro {
    width: 90%;
    margin-bottom: 45px;
  }

  .team-intro .large-copy {
    font-size: 1.15rem;
  }


  /* One trustee per row */
  .team-grid {
    width: 90%;

    grid-template-columns: 1fr;

    gap: 28px;
  }


  /* Cards */
  .team-member {
    border-radius: var(--radius);
  }


  /* Photos */
  .team-photo {
    aspect-ratio: 4 / 3;
  }


  /* Details */
  .team-details {
    padding: 25px 23px;
  }

  .team-details h3 {
    font-size: 1.35rem;
  }

  .team-role {
    margin-bottom: 18px;
  }

  .team-biography p {
    font-size: 0.95rem;
    line-height: 1.7;
  }


  /* Notice */
  .team-section .notice {
    width: 90%;
    margin-top: 35px;
  }

}


/* =====================================================
   SMALL PHONES
   ===================================================== */

@media (max-width: 400px) {

  .team-section {
    padding: 50px 0 60px;
  }

  .team-details {
    padding: 22px 20px;
  }

  .team-details h3 {
    font-size: 1.25rem;
  }

  .team-role {
    font-size: 0.78rem;
  }

}


/* =====================================================
   ACCESSIBILITY
   ===================================================== */

@media (prefers-reduced-motion: reduce) {

  .team-member,
  .team-photo img {
    transition: none;
  }

  .team-member:hover {
    transform: none;
  }

  .team-member:hover .team-photo img {
    transform: none;
  }}

.complaint-page {
  width: 100%;
  padding: 56px 16px;
  background: var(--gradient-grey);
  color: var(--ink);
  box-sizing: border-box;
}

.form-page-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

/* =========================================
   INTRO
   ========================================= */

.form-page-heading {
  min-width: 0;
}

.form-page-heading .eyebrow {
  margin: 0 0 12px;

  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-page-heading h2 {
  margin: 0;

  color: var(--navy);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.form-page-heading h2 em {
  color: var(--blue);
  font-style: normal;
}

.form-page-heading > p:last-child {
  max-width: 480px;
  margin: 24px 0 0;

  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}


/* =========================================
   FORM CARD
   ========================================= */

.contact-form {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;

  padding: clamp(22px, 4vw, 40px);

  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}


/* =========================================
   FORM HEADING
   ========================================= */

.form-heading {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 26px;
}

.form-heading span {
  display: block;
  width: 28px;
  height: 3px;
  flex: 0 0 auto;

  background: var(--blue);
  border-radius: 99px;
}

.form-heading h3 {
  margin: 0;

  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.2;
}


/* =========================================
   LABELS + INPUTS
   ========================================= */

.contact-form label {
  display: block;
  min-width: 0;
  margin-bottom: 18px;

  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.4;
}

.contact-form label > span:first-child {
  display: block;
  margin-bottom: 7px;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;

  padding: 13px 14px;

  color: var(--ink);
  background: var(--grey-50);

  border: 1px solid var(--grey-300);
  border-radius: var(--radius-sm);

  font: inherit;
  font-size: 16px; /* prevents iOS zoom */
  line-height: 1.45;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);

  box-shadow:
    0 0 0 3px rgba(22, 131, 200, 0.12);
}


/* =========================================
   CONSENT
   ========================================= */

.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin: 6px 0 22px;

  color: var(--grey-600);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-form .consent input[type="checkbox"] {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;

  margin: 1px 0 0;

  accent-color: var(--blue);
}


/* =========================================
   BUTTON
   ========================================= */

.contact-form .btn-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  width: 100%;
  min-height: 52px;

  padding: 13px 18px;

  color: var(--white);
  background: var(--gradient-blue);

  border: 0;
  border-radius: var(--radius-sm);

  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form .btn-primary span:last-child {
  font-size: 1.2rem;
  line-height: 1;
}

.contact-form .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.contact-form .btn-primary:active {
  transform: translateY(0);
}


/* =========================================
   MESSAGE
   ========================================= */

.form-message {
  margin-top: 14px;

  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.5;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 850px) {
  .form-page-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-page-heading {
    max-width: 620px;
  }

  .form-page-heading h2 {
    font-size: clamp(2.6rem, 9vw, 4rem);
  }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {
  .complaint-page {
    padding: 38px 14px;
  }

  .form-page-inner {
    gap: 26px;
  }

  .form-page-heading .eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .form-page-heading h2 {
    font-size: clamp(2.4rem, 13vw, 3.4rem);
    line-height: 0.92;
  }

  .form-page-heading > p:last-child {
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .contact-form {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .form-heading {
    margin-bottom: 22px;
  }

  .form-heading h3 {
    font-size: 1.1rem;
  }

  .contact-form label {
    margin-bottom: 15px;
    font-size: 0.85rem;
  }

  .contact-form input:not([type="checkbox"]),
  .contact-form textarea {
    padding: 12px 13px;
  }

  .contact-form textarea {
    min-height: 105px;
  }

  .contact-form .consent {
    margin-top: 4px;
    margin-bottom: 18px;
    font-size: 0.78rem;
  }

  .contact-form .btn-primary {
    min-height: 50px;
  }
}


/* =========================================
   VERY SMALL PHONES
   ========================================= */

@media (max-width: 380px) {
  .complaint-page {
    padding-inline: 10px;
  }

  .contact-form {
    padding: 18px 13px;
    border-radius: 18px;
  }

  .form-page-heading h2 {
    font-size: 2.35rem;
  }
}
.contact-page {
  width: 100%;
  box-sizing: border-box;

  padding: 56px 16px;

  background: var(--gradient-blue);
  color: var(--white);

  overflow: hidden;
}


/* =========================================
   MAIN LAYOUT
   ========================================= */

.contact-page .form-page-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 80px);

  align-items: start;
}


/* =========================================
   LEFT CONTENT
   ========================================= */

.contact-page .form-page-heading {
  min-width: 0;
}

.contact-page .form-page-heading .eyebrow {
  margin: 0 0 12px;

  color: var(--blue-bright);

  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-page .form-page-heading h2 {
  margin: 0;

  color: var(--white);

  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.contact-page .form-page-heading h2 em {
  color: var(--blue-bright);
  font-style: normal;
}

.contact-page .form-page-heading > p:last-child {
  max-width: 480px;
  margin: 24px 0 0;

  color: rgba(255, 255, 255, 0.78);

  font-size: 1rem;
  line-height: 1.65;
}


/* =========================================
   FORM CARD
   ========================================= */

.contact-page .contact-form {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;

  padding: clamp(22px, 4vw, 40px);

  background: var(--white);
  color: var(--ink);

  border: var(--border);
  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-lg);
}


/* =========================================
   FORM HEADING
   ========================================= */

.contact-page .form-heading {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 18px;
}

.contact-page .form-heading > span {
  display: block;

  width: 28px;
  height: 3px;
  flex: 0 0 auto;

  background: var(--blue);
  border-radius: 99px;
}

.contact-page .form-heading h3 {
  margin: 0;

  color: var(--navy);

  font-size: 1.25rem;
  line-height: 1.2;
}


/* =========================================
   FORM INTRO
   ========================================= */

.contact-page .form-intro {
  margin: 0 0 24px;

  color: var(--ink-soft);

  font-size: 0.9rem;
  line-height: 1.55;
}


/* =========================================
   LABELS
   ========================================= */

.contact-page .contact-form label {
  display: block;
  min-width: 0;

  margin-bottom: 17px;

  color: var(--ink);

  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.4;
}

.contact-page .contact-form label > span {
  display: block;
  margin-bottom: 7px;
}


/* =========================================
   INPUTS
   ========================================= */

.contact-page .contact-form input:not([type="checkbox"]),
.contact-page .contact-form textarea {
  display: block;

  width: 100%;
  max-width: 100%;
  box-sizing: border-box;

  padding: 13px 14px;

  color: var(--ink);
  background: var(--grey-50);

  border: 1px solid var(--grey-300);
  border-radius: var(--radius-sm);

  font-family: inherit;
  font-size: 16px;
  line-height: 1.45;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-page .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-page .contact-form input:not([type="checkbox"]):focus,
.contact-page .contact-form textarea:focus {
  background: var(--white);

  border-color: var(--blue);

  box-shadow:
    0 0 0 3px rgba(22, 131, 200, 0.12);
}


/* =========================================
   BUTTON
   ========================================= */

.contact-page .contact-form .btn-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 52px;

  box-sizing: border-box;

  padding: 13px 18px;

  color: var(--white);
  background: var(--gradient-blue);

  border: 0;
  border-radius: var(--radius-sm);

  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-page .contact-form .btn-primary span:last-child {
  font-size: 1.2rem;
  line-height: 1;
}

.contact-page .contact-form .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.contact-page .contact-form .btn-primary:active {
  transform: translateY(0);
}


/* =========================================
   FORM MESSAGE
   ========================================= */

.contact-page .form-message {
  margin-top: 14px;

  color: var(--ink-soft);

  font-size: 0.85rem;
  line-height: 1.5;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 850px) {

  .contact-page .form-page-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-page .form-page-heading {
    max-width: 620px;
  }

  .contact-page .form-page-heading h2 {
    font-size: clamp(2.6rem, 9vw, 4rem);
  }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

  .contact-page {
    padding: 38px 14px;
  }

  .contact-page .form-page-inner {
    gap: 26px;
  }

  .contact-page .form-page-heading .eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .contact-page .form-page-heading h2 {
    font-size: clamp(2.4rem, 13vw, 3.4rem);
    line-height: 0.92;
  }

  .contact-page .form-page-heading > p:last-child {
    margin-top: 18px;

    font-size: 0.92rem;
    line-height: 1.55;
  }

  .contact-page .contact-form {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .contact-page .form-heading {
    margin-bottom: 16px;
  }

  .contact-page .form-heading h3 {
    font-size: 1.1rem;
  }

  .contact-page .form-intro {
    margin-bottom: 20px;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .contact-page .contact-form label {
    margin-bottom: 15px;
    font-size: 0.85rem;
  }

  .contact-page .contact-form input:not([type="checkbox"]),
  .contact-page .contact-form textarea {
    padding: 12px 13px;
  }

  .contact-page .contact-form textarea {
    min-height: 105px;
  }

  .contact-page .contact-form .btn-primary {
    min-height: 50px;
  }
}


/* =========================================
   VERY SMALL PHONES
   ========================================= */

@media (max-width: 380px) {

  .contact-page {
    padding: 32px 10px;
  }

  .contact-page .contact-form {
    padding: 18px 13px;
    border-radius: 18px;
  }

  .contact-page .form-page-heading h2 {
    font-size: 2.35rem;
  }

  .contact-page .form-intro {
    font-size: 0.8rem;
  }
}
/* =========================================
   BALANCED RESEARCH SECTION
   ========================================= */

.research-section {
  position: relative;

  width: 100%;
  max-width: none;
  box-sizing: border-box;

  /* Equal space above and below */
  padding: 38px 20px;

  color: var(--white);

  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(39, 167, 232, 0.08) 0%,
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #041321 0%,
      #061A2F 42%,
      #082744 75%,
      #0A3557 100%
    );

  overflow: hidden;
}


/* =========================================
   CONTENT
   ========================================= */

.research-inner {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;
}


/* =========================================
   HEADING
   ========================================= */

.research-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);

  gap: 35px;

  align-items: center;

  margin: 0 0 22px;
}


/* =========================================
   CARDS
   ========================================= */

.research-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 420px));

  justify-content: center;

  gap: 16px;

  width: 100%;

  margin: 0 auto;
}


.research-card {
  width: 100%;
  box-sizing: border-box;

  padding: 20px 22px;

  color: var(--ink);

  background:
    linear-gradient(
      145deg,
      var(--white) 0%,
      var(--grey-50) 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.75);

  border-radius: var(--radius);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 800px) {

  .research-heading {
    grid-template-columns: 1fr;

    gap: 10px;

    margin-bottom: 20px;
  }

}


@media (max-width: 700px) {

  .research-section {
    /*
     * Exactly equal top and bottom spacing.
     */
    padding: 30px 14px;
  }

  .research-grid {
    grid-template-columns: minmax(0, 500px);

    gap: 10px;
  }

  .research-card {
    padding: 17px 16px;
  }

}


@media (max-width: 380px) {

  .research-section {
    padding: 26px 10px;
  }

  .research-card {
    padding: 15px 14px;
  }

}
/* =========================================================
   FUNDERS SECTION
   ========================================================= */

.funders-section {
  position: relative;

  width: 100%;
  max-width: none;

  box-sizing: border-box;

  /*
   * Same compact height approach as Research section.
   */
  padding: 38px 20px;

  color: var(--white);

  /*
   * Slightly dark navy/blue gradient.
   */
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(39, 167, 232, 0.08) 0%,
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #041321 0%,
      #061A2F 42%,
      #082744 75%,
      #0A3557 100%
    );

  overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND DECORATION
   ========================================================= */

.funders-section::before {
  content: "";

  position: absolute;

  top: -180px;
  right: -180px;

  width: 400px;
  height: 400px;

  border: 1px solid rgba(255, 255, 255, 0.055);

  border-radius: 50%;

  pointer-events: none;
}

.funders-section::after {
  content: "";

  position: absolute;

  bottom: -220px;
  left: -180px;

  width: 400px;
  height: 400px;

  background: rgba(22, 131, 200, 0.05);

  border-radius: 50%;

  pointer-events: none;
}


/* =========================================================
   CONTENT CONTAINER
   ========================================================= */

.funders-inner {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.funders-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);

  gap: 45px;

  align-items: center;
}


/* =========================================================
   LEFT HEADING
   DARK BACKGROUND = LIGHT TEXT
   ========================================================= */

.funders-heading {
  min-width: 0;
}

.funders-heading .eyebrow {
  margin: 0 0 8px;

  color: var(--blue-bright);

  font-size: 0.68rem;
  font-weight: 700;

  line-height: 1.2;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.funders-heading h2 {
  margin: 0;

  color: var(--white);

  font-size: clamp(2.4rem, 4.5vw, 3.8rem);

  line-height: 0.98;

  letter-spacing: -0.04em;
}

.funders-heading h2 em {
  color: var(--blue-bright);

  font-style: normal;
}


/* =========================================================
   LIGHT CONTENT PANEL
   LIGHT BACKGROUND = DARK TEXT
   ========================================================= */

.funders-copy {
  box-sizing: border-box;

  padding: 24px 26px;

  color: var(--ink);

  background:
    linear-gradient(
      145deg,
      var(--white) 0%,
      var(--grey-50) 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.75);

  border-radius: var(--radius);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   COPY
   ========================================================= */

.funders-copy p {
  margin: 0 0 11px;

  color: var(--ink-soft);

  font-size: 0.86rem;

  line-height: 1.55;
}

.funders-copy p:last-of-type {
  margin-bottom: 20px;
}


/* =========================================================
   FUNDER PLACEHOLDERS
   ========================================================= */

.funder-placeholders {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 10px;

  width: 100%;
}

.funder-placeholders span {
  display: block;

  min-height: 58px;

  background:
    linear-gradient(
      135deg,
      var(--grey-100),
      var(--grey-200)
    );

  border: 1px solid var(--grey-200);

  border-radius: var(--radius-sm);
}


/* =========================================================
   NOTICE
   ========================================================= */

.funders-section .notice {
  position: relative;
  z-index: 1;

  max-width: var(--max-width);

  margin: 20px auto 0;

  color: rgba(255, 255, 255, 0.55);

  font-size: 0.75rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

  .funders-layout {
    grid-template-columns: 1fr;

    gap: 22px;

    align-items: start;
  }

  .funders-heading {
    max-width: 650px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .funders-section {
    padding: 30px 14px;
  }


  /* Heading */

  .funders-layout {
    gap: 18px;
  }

  .funders-heading .eyebrow {
    margin-bottom: 6px;

    font-size: 0.64rem;
  }

  .funders-heading h2 {
    font-size: 2.3rem;

    line-height: 0.98;
  }


  /* Light panel */

  .funders-copy {
    padding: 19px 17px;

    border-radius: 16px;
  }

  .funders-copy p {
    margin-bottom: 9px;

    font-size: 0.81rem;

    line-height: 1.5;
  }

  .funders-copy p:last-of-type {
    margin-bottom: 16px;
  }


  /* Placeholder logos */

  .funder-placeholders {
    gap: 8px;
  }

  .funder-placeholders span {
    min-height: 48px;

    border-radius: 9px;
  }


  .funders-section .notice {
    margin-top: 14px;

    font-size: 0.7rem;
  }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

  .funders-section {
    padding: 26px 10px;
  }

  .funders-heading h2 {
    font-size: 2.1rem;
  }

  .funders-copy {
    padding: 17px 15px;
  }

  .funders-copy p {
    font-size: 0.78rem;
  }

  .funder-placeholders span {
    min-height: 44px;
  }

}
/* =========================================================
   OBJECTIVES
   FULL-WIDTH DARK GREY / SHINY GRADIENT SECTION
   ========================================================= */

.objectives-section {
  position: relative;

  width: 100%;
  max-width: none;

  box-sizing: border-box;

  /*
   * Equal top and bottom spacing.
   * Keeps the section compact like Research.
   */
  padding: 42px 20px;

  color: var(--white);

  /*
   * Dark shiny slate gradient.
   *
   * Uses your existing grey/navy colour system,
   * with subtle blue reflection from the website palette.
   */
  background:

    /* Soft blue reflection */
    radial-gradient(
      ellipse at 15% 0%,
      rgba(39, 167, 232, 0.10) 0%,
      transparent 38%
    ),

    /* Shiny light reflection */
    radial-gradient(
      ellipse at 85% 8%,
      rgba(255, 255, 255, 0.09) 0%,
      transparent 30%
    ),

    /* Main grey gradient */
    linear-gradient(
      135deg,
      #202A35 0%,
      #293542 24%,
      #344253 48%,
      #293542 72%,
      #1C2631 100%
    );

  overflow: hidden;
}


/* =========================================================
   SUBTLE SHINE
   ========================================================= */

.objectives-section::before {
  content: "";

  position: absolute;

  top: -180px;
  right: 8%;

  width: 600px;
  height: 260px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      transparent
    );

  filter: blur(25px);

  transform: rotate(-8deg);

  pointer-events: none;
}


/* Bottom subtle blue glow */

.objectives-section::after {
  content: "";

  position: absolute;

  bottom: -200px;
  left: 15%;

  width: 500px;
  height: 300px;

  background:
    radial-gradient(
      ellipse,
      rgba(22, 131, 200, 0.10),
      transparent 70%
    );

  pointer-events: none;
}


/* =========================================================
   CONTENT CONTAINER
   ========================================================= */

.objectives-inner {
  position: relative;

  z-index: 1;

  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;

  box-sizing: border-box;
}


/* =========================================================
   HEADING
   ========================================================= */

.objectives-section .section-heading {
  max-width: 760px;

  margin: 0 auto 28px;

  text-align: center;
}


/* Eyebrow */

.objectives-section .eyebrow {
  margin: 0 0 7px;

  color: var(--blue-bright);

  font-size: 0.88rem;
  font-weight: 700;

  line-height: 1.2;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}


/* Main heading */

.objectives-section .section-heading h2 {
  margin: 0;

  color: var(--white);

  font-size: clamp(2.4rem, 5vw, 3.8rem);

  line-height: 0.95;

  letter-spacing: -0.045em;
}


/* Introduction */

.objectives-section .section-intro {
  max-width: 650px;

  margin: 14px auto 0;

  color: rgba(255, 255, 255, 0.75);

  font-size: 0.9rem;
line-height: 1.55;
  
}


/* =========================================================
   OBJECTIVE GRID
   ========================================================= */

.objective-list {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  font-size: 2rem;
  gap: 13px;

  width: 100%;
}


/* =========================================================
   OBJECTIVE CARD
   LIGHT BACKGROUND = DARK TEXT
   ========================================================= */

.objective {
  position: relative;

  display: flex;

  align-items: flex-start;
 font-size: 2rem;
  gap: 13px;

  min-width: 0;

  box-sizing: border-box;

  padding: 17px 18px;

  /*
   * Light card against dark background.
   */
  background:
    linear-gradient(
      145deg,
      var(--white) 0%,
      var(--grey-50) 55%,
      var(--grey-100) 100%
    );

  color: var(--ink);

  border: 1px solid rgba(255, 255, 255, 0.75);

  border-radius: var(--radius-sm);

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.15);

  overflow: hidden;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


/* Small blue accent */

.objective::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 3px;
  height: 100%;

  background:
    linear-gradient(
      180deg,
      var(--blue-bright),
      var(--blue)
    );
}


/* =========================================================
   NUMBER
   ========================================================= */

.objective > span {
  flex: 0 0 auto;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  margin-top: 1px;

  color: var(--blue);

  background: var(--blue-soft);

  border: 1px solid rgba(22, 131, 200, 0.14);

  border-radius: 8px;

  font-size: 0.58rem;
  font-weight: 800;

  letter-spacing: 0.04em;
}


/* =========================================================
   OBJECTIVE TEXT
   ========================================================= */

.objective p {
  min-width: 0;

  margin: 0;
 font-size: 1rem;
  color: var(--ink);

  

  line-height: 1.48;
}



/* =========================================================
   HOVER
   ========================================================= */

@media (hover: hover) {

  .objective:hover {
    transform: translateY(-2px);

    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.20);
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .objective-list {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .objectives-section {
    padding: 32px 14px;
  }


  .objectives-section .section-heading {
    margin-bottom: 20px;
  }


  .objectives-section .eyebrow {
    font-size: 0.63rem;
  }


  .objectives-section .section-heading h2 {
    font-size: 2.3rem;
  }


  .objectives-section .section-intro {
    margin-top: 10px;

    font-size: 0.81rem;

    line-height: 1.48;
  }


  /* One column on phones */

  .objective-list {
    grid-template-columns: 1fr;

    gap: 9px;
  }


  /* Compact mobile cards */

  .objective {
    gap: 11px;

    padding: 14px 15px;

    border-radius: 11px;
  }


  .objective > span {
    width: 26px;
    height: 26px;

    border-radius: 7px;

    font-size: 0.55rem;
  }


  .objective p {
    font-size: 0.77rem;

    line-height: 1.45;
  }

}
.objectives-section {
  position: relative;

  width: 100%;
  max-width: none;
  box-sizing: border-box;

  padding: 42px 20px;

  color: var(--white);

  /* Lighter shiny grey gradient */
  background:
    radial-gradient(
      ellipse at 15% 0%,
      rgba(39, 167, 232, 0.12) 0%,
      transparent 38%
    ),

    radial-gradient(
      ellipse at 85% 8%,
      rgba(255, 255, 255, 0.16) 0%,
      transparent 32%
    ),

    linear-gradient(
      135deg,
      #344253 0%,
      #3E4C5C 25%,
      #4B5868 50%,
      #414E5D 75%,
      #303D4C 100%
    );

  overflow: hidden;
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

  .objectives-section {
    padding: 28px 10px;
  }


  .objectives-section .section-heading h2 {
    font-size: 2.1rem;
  }


  .objective {
    padding: 13px 13px;
  }


  .objective p {
    font-size: 0.74rem;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .objective {
    transition: none;
  }

  .objective:hover {
    transform: none;
  }

}
