:root {
  --bg-teal: #005A73;
  --text-main: #ffffff;
  --max-width: calc(4em + 1152px);
  --font-sans: "Atkinson Hyperlegible", system-ui, -apple-system,
               BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}


/* GLOBAL RESET-ish */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-teal);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.16px;
}

a {
  color: var(--text-main);
  font-weight: 600;
  text-decoration: underline;
}

a:visited {
  color: var(--text-main);
}

a:hover {
  text-decoration: none;
}

h1,
p,
ul li,
.subtitle,
.large-body,
.section-title-block {
  margin: 0 0 1em 0;
}

/* TYPE SIZES */

h1 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1em;
  margin-bottom: 0.5em;
}

.subtitle {
  font-size: 32px;
}

.large-body {
  font-size: 22px;
}

.partners-text {
  font-size: 28px;
}

.section-title-block {
  font-size: 32px;
  padding-right: 20px;
}

ul {
      list-style-type: disc;
  list-style-position: outside;
  padding-inline-start: 20px;
  margin-top: 0;
}

ul .starter {
  margin: 0.5em 0;
}

/* LAYOUT */

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.top-graphic {
    position: absolute;
    left: 0;
    top: 0;
}

.bottom-graphic {
    position: absolute;
    right: 0;
    bottom: 0;
}

.page-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8rem 2rem 12rem 2rem  ;
  z-index: 1;
}

/* HEADER */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 8rem;
}

.logo-group img {
  display: block;
  max-height: 149px;
  width: auto;
}


.header-contact {
  max-width: 340px;
  width: 100%;
  font-size: 22px;
}

/* HERO INTRO */

.hero-intro {
  max-width: 790px;
  width: 100%;
  margin-bottom: 4rem;


}

/* 3-COLUMN MAIN GRID (used for most sections) */

.main-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* FOOTER */
footer {
    padding-top:4rem;
}

/* footer .large-body {
  margin-top: 0;
} */

.partners img {
  display: block;
  max-height: 120px;
  width: auto;
}


/* RESPONSIVE BREAKPOINTS */

/* Tablet-ish: 2 columns instead of 3 */
@media (max-width: 960px) {
  .main-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-title-block {
    /* Let the title sit in its own row if needed */
    grid-column: 1 / -1;
  }

  h1 {
    font-size: 40px;
  }

  .subtitle,
  .section-title-block {
    font-size: 28px;
  }

  .partners-text {
  font-size: 24px;
}
}

/* Small screens: stack everything */
@media (max-width: 720px) {
  .page-inner {
    padding: 2.5rem ;
  }

.top-graphic {
    top: -100px;
}

.bottom-graphic {
    bottom: -100px;
}

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap:40px;
      margin-bottom: 3rem;

  }

  .logo-group img {
  max-height: 120px;
}

  .header-contact {
    text-align: left;
    max-width: none;
  }

  .hero-intro {
    margin-bottom: 3rem;
}

  .main-columns {
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 20px;
    gap:0;
  }

  footer {
    padding-top: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  footer .main-columns  {
    gap: 16px;
  }
  .footer-contact {
    text-align: left;
    max-width: none;
  }

  h1 {
    font-size: 34px;
  }

  .subtitle,
  .section-title-block {
    font-size: 24px;
    padding-right: 0;
  }

  .large-body {
    font-size: 18px;
  }
}

/* Tiny phones: a bit tighter padding */
@media (max-width: 480px) {
  .page-inner {
    padding-inline: 1.25rem;
  }
}
