@font-face {
  font-family: "Synemos 2";
  src: url("../assets/fonts/synemos2.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-dark-grey: #2e2e2e;
  --color-green: #50b38d;
  --color-darkgreen: #36785e;
  --color-light-green: #c4e1d6;
  --color-white: #fff;
  --radius-large: 1.25rem;
  --radius-button: 0.3rem;
  /* Shared with careers-style sections */
  --surface-tint: #f4faf7;
  --section-border: #e0e4e1;
  --text-muted: #5c5c5c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--color-dark-grey);
  font-family: Exo, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.43;
  background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark-grey);
  margin: 0;
  font-family: "Synemos 2", Arial, sans-serif;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* —— Header / nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
}

.navbar-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.375fr) minmax(0, 1fr) minmax(0, 0.375fr);
  align-items: center;
  gap: 1rem 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  min-height: 4.5rem;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.padding-vertical.padding-xsmall {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.shadow-medium {
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #00000008;
}

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

.footer-logo-link {
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 2.5rem;
  width: auto;
}

.footer-logo {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  grid-column: 2;
  grid-row: 1;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-dark-grey);
  border-radius: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  grid-column: 2;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-green);
}

.nav-cta {
  grid-column: 3;
  justify-self: end;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .navbar-inner {
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto auto;
    align-items: center;
  }

  .logo-link {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.875rem;
  }

  .nav-toggle {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .nav-link {
    text-align: left;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0 0;
    border-top: 1px solid #00000014;
    margin-top: 0.75rem;
  }

  .site-nav.is-open {
    display: flex;
  }
}

/* —— Hero —— */
.color-scheme-hero {
  background-color: var(--color-light-green);
  color: var(--color-dark-grey);
}

.text-align-center {
  text-align: center;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.heading-style-hero {
  font-size: clamp(2.25rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
}

.text-size-xxlarge {
  font-size: 1.5rem;
  line-height: 1.5;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.button-group.is-center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-green);
  background-color: var(--color-green);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-button);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.button:hover {
  border-color: var(--color-darkgreen);
  background-color: var(--color-darkgreen);
}

.button.is-secondary {
  color: var(--color-green);
  background-color: transparent;
}

.button.is-secondary:hover {
  color: var(--color-darkgreen);
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-xsmall {
  margin-bottom: 1rem;
}

.margin-bottom.margin-small {
  margin-bottom: 1.5rem;
}

.margin-top {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.margin-top.margin-xsmall {
  margin-top: 1rem;
}

.margin-top.margin-medium {
  margin-top: 2rem;
}

.margin-top.margin-small {
  margin-top: 1.5rem;
}

/* —— Sections: three-column (intro + two features) —— */
.section-block {
  background-color: var(--color-white);
  color: var(--color-dark-grey);
}

.section-alt {
  background-color: var(--surface-tint);
}

.section-three-col {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.76fr) minmax(0, 0.76fr);
  gap: 2.5rem 3.25rem;
  align-items: start;
}

.section-three-col-intro {
  min-width: 0;
}

.section-three-col-lead {
  margin: 1.125rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-dark-grey);
}

.section-three-col-item {
  min-width: 0;
}

/* —— Content sections: card columns + dark band (aligned with careers page) —— */
.section-block .section-three-col > .layout59-item.section-three-col-item {
  background-color: var(--color-white);
  border: 1px solid var(--section-border);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.section-block .section-three-col > .layout59-item.section-three-col-item:hover {
  border-color: var(--color-green);
  box-shadow: 0 8px 24px rgba(80, 179, 141, 0.1);
  transform: translateY(-2px);
}

.section-block:not(.section-feature-band) .section-three-col > .layout59-item.section-three-col-item p {
  color: var(--text-muted);
}

.section-block:not(.section-feature-band) .section-three-col > .layout59-item.section-three-col-item p strong {
  color: var(--color-dark-grey);
}

.section-block .section-three-col .section-three-col-item .item-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.625rem;
  background-color: var(--color-light-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-block .section-three-col .section-three-col-item .item-icon-wrap .icon-1x1-medium {
  width: 2rem;
  height: 2rem;
}

.section-feature-band {
  background-color: var(--color-darkgreen);
  color: var(--color-white);
}

.section-feature-band .text-style-tagline {
  color: var(--color-light-green);
}

.section-feature-band .heading-style-h2,
.section-feature-band .heading-style-h6 {
  color: var(--color-white);
}

.section-feature-band .section-three-col-lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-feature-band .section-three-col > .layout59-item.section-three-col-item {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-feature-band .section-three-col > .layout59-item.section-three-col-item:hover {
  border-color: rgba(196, 225, 214, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.section-feature-band .section-three-col .layout59-item.section-three-col-item p {
  color: rgba(255, 255, 255, 0.72);
}

.section-feature-band .section-three-col .section-three-col-item .item-icon-wrap {
  background-color: rgba(255, 255, 255, 0.12);
}

.section-spotlight-card {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem 2rem;
  background-color: var(--color-white);
  border: 1px solid var(--section-border);
  border-radius: var(--radius-large);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .section-three-col {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .section-three-col {
    gap: 2rem 2rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  }
}

.text-style-tagline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
}

.heading-style-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.heading-style-h6 {
  font-size: 1.25rem;
  line-height: 1.4;
}

.layout59-item:not(.section-three-col-item) {
  padding-bottom: 0.5rem;
}

/* Same body size across section columns */
.section-block .section-three-col .layout59-item p,
.section-block .section-three-col .benefits-list {
  font-size: 1rem;
  line-height: 1.6;
}

.item-icon-wrap {
  display: inline-block;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.benefits-list {
  margin: 0;
  padding-left: 1.25rem;
}

.benefits-list li {
  margin-bottom: 0.5rem;
}

/* —— Full-width bridge between major sections —— */
.section-bridge {
  width: 100%;
  height: 6px;
  flex-shrink: 0;
  background: linear-gradient(
    90deg,
    var(--color-light-green) 0%,
    var(--color-green) 42%,
    var(--color-green) 58%,
    var(--color-light-green) 100%
  );
  box-shadow: 0 1px 0 #00000008;
}

/* —— Contact CTA —— */
.section-cta {
  background-color: var(--color-white);
}

.cta2-card {
  border-radius: var(--radius-large);
  background-color: var(--color-light-green);
  border: 1px solid rgba(54, 120, 94, 0.2);
  padding: 2rem 2rem 1.75rem;
  overflow: hidden;
}

.cta2-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(13rem, 0.88fr);
  gap: 2rem 3rem;
  align-items: end;
}

.cta2-left {
  min-width: 0;
  padding-bottom: 0.25rem;
}

.cta2-left .cta2-email-block {
  width: 100%;
  max-width: 42rem;
}

.cta2-image-wrap {
  justify-self: end;
  align-self: end;
  width: 100%;
  max-width: 17.5rem;
  border-radius: var(--radius-large);
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 8px 28px #00000014;
}

.cta2-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 991px) {
  .cta2-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: stretch;
  }

  .cta2-image-wrap {
    justify-self: center;
    max-width: 15rem;
    order: 1;
  }

  .cta2-left {
    order: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cta2-inner {
    gap: 1.75rem 2rem;
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.82fr);
  }

  .cta2-image-wrap {
    max-width: 15rem;
  }
}

.text-size-medium {
  font-size: 1.125rem;
  line-height: 1.6;
}

.text-size-small {
  font-size: 0.875rem;
}

.text-size-tiny {
  font-size: 0.75rem;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 30rem;
}

.form_input {
  border: 1px solid var(--color-green);
  color: var(--color-dark-grey);
  background-color: #fff;
  border-radius: 0.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  font-family: inherit;
  width: 100%;
}

.form_input:focus {
  border-color: #000;
  outline: none;
}

.form_input::placeholder {
  color: #0009;
}

.form_input.is-text-area {
  min-height: 11.25rem;
  padding-top: 0.75rem;
  resize: vertical;
}

.form-actions {
  margin-top: 0.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

.form_message-success-wrapper {
  margin-top: 1rem;
}

.form_message-success {
  color: #027a48;
  background-color: #ecfdf3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  display: flex;
}

.form_message-error-wrapper {
  margin-top: 1rem;
}

.form_message-error {
  color: #b42318;
  background-color: #fef3f2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.success-text {
  color: var(--color-darkgreen);
  font-weight: 600;
}

.error-text {
  color: #e23939;
}

.radius-large {
  border-radius: var(--radius-large);
}

/* —— Footer —— */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  color: var(--color-dark-grey);
}

.footer-credit {
  opacity: 0.85;
}

.footer-legal {
  text-decoration: underline;
  font-weight: 500;
}

.footer-legal:hover {
  color: var(--color-green);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-grey);
  transition: color 0.15s ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--color-green);
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

@media (max-width: 767px) {
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-socials {
    width: 100%;
    justify-content: flex-start;
  }
}

/* —— Privacy / legal page (scoped) —— */
.legal-page {
  flex: 1;
  background-color: var(--surface-tint);
}

.privacy-hero {
  text-align: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.privacy-hero .privacy-hero-tag {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.privacy-hero .heading-style-h2 {
  margin-bottom: 0.75rem;
}

.privacy-hero-meta {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.privacy-hero-meta strong {
  font-weight: 600;
}

.legal-layout {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 3rem 5% 5rem;
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 860px) {
  .legal-layout {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}

.legal-page .toc {
  position: sticky;
  top: 5.5rem;
  background-color: var(--color-white);
  border-radius: var(--radius-large);
  border: 1px solid #c4e1d6;
  padding: 1.5rem;
  box-shadow: 0 2px 16px #00000008;
}

@media (max-width: 860px) {
  .legal-page .toc {
    position: static;
  }
}

.legal-page .toc-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #c4e1d6;
}

.legal-page .toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: legal-toc;
}

.legal-page .toc ol li {
  counter-increment: legal-toc;
  margin-bottom: 0.25rem;
}

.legal-page .toc ol li a {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-dark-grey);
  font-size: 0.82rem;
  line-height: 1.4;
  padding: 0.35rem 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.legal-page .toc ol li a::before {
  content: counter(legal-toc);
  min-width: 1.125rem;
  height: 1.125rem;
  background-color: var(--color-light-green);
  color: var(--color-green);
  border-radius: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.legal-page .toc ol li a:hover {
  background-color: var(--color-light-green);
  color: var(--color-darkgreen);
}

.legal-page .toc ol li a.is-active-toc {
  font-weight: 600;
  color: var(--color-green);
}

.legal-page .content {
  min-width: 0;
}

.legal-page .intro-card {
  background-color: var(--color-white);
  border-left: 4px solid var(--color-green);
  border-radius: 0 var(--radius-large) var(--radius-large) 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 12px #00000008;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-dark-grey);
}

.legal-page .intro-card p + p {
  margin-top: 0.75rem;
}

.legal-page .section {
  background-color: var(--color-white);
  border-radius: var(--radius-large);
  border: 1px solid #c4e1d6;
  padding: 2.25rem 2.5rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 2px 12px #00000006;
  scroll-margin-top: 6rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.legal-page .section.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .legal-page .section {
    padding: 1.5rem 1.35rem;
  }
}

.legal-page .section-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
  background-color: var(--color-light-green);
  padding: 0.2rem 0.625rem;
  border-radius: 1.25rem;
  margin-bottom: 0.625rem;
}

.legal-page .section h2 {
  font-family: "Synemos 2", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-darkgreen);
  margin: 0 0 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #c4e1d6;
}

.legal-page .section h3 {
  font-family: Exo, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-green);
  margin: 1.5rem 0 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-page .section h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 1rem;
  background-color: var(--color-green);
  border-radius: 2px;
  flex-shrink: 0;
}

.legal-page .section p {
  color: var(--color-dark-grey);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.legal-page .section ul {
  list-style: none;
  margin: 0.75rem 0 1rem;
  padding: 0;
}

.legal-page .section ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-dark-grey);
  margin-bottom: 0.5rem;
}

.legal-page .section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background-color: var(--color-green);
  border-radius: 50%;
}

.legal-page .section a {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page .section a:hover {
  color: var(--color-darkgreen);
}

.legal-page .info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.94rem;
}

.legal-page .info-table tr:not(:last-child) td {
  border-bottom: 1px solid #c4e1d6;
}

.legal-page .info-table td {
  padding: 0.625rem 0.875rem;
  vertical-align: top;
}

.legal-page .info-table td:first-child {
  font-weight: 600;
  color: var(--color-darkgreen);
  background-color: var(--color-light-green);
  width: 32%;
  white-space: nowrap;
}

.legal-page .legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #c4e1d6;
}

.legal-page .legal-table thead th {
  background-color: var(--color-green);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
}

.legal-page .legal-table tbody td {
  padding: 0.7rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid #c4e1d6;
  color: var(--color-dark-grey);
}

.legal-page .legal-table tbody td:first-child {
  font-weight: 600;
  color: var(--color-darkgreen);
  background-color: var(--color-light-green);
  width: 28%;
}

.legal-page .legal-table tbody tr:last-child td {
  border-bottom: none;
}

.legal-page .purpose-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.88rem;
  border: 1px solid #c4e1d6;
  border-radius: 0.5rem;
  overflow: hidden;
}

.legal-page .purpose-table thead th {
  background-color: var(--color-green);
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 0.875rem;
  text-align: left;
}

.legal-page .purpose-table tbody td {
  padding: 0.625rem 0.875rem;
  vertical-align: top;
  border-bottom: 1px solid #c4e1d6;
  color: var(--color-dark-grey);
  line-height: 1.55;
}

.legal-page .purpose-table tbody td:first-child {
  font-weight: 500;
  color: var(--color-darkgreen);
  background-color: var(--color-light-green);
  width: 28%;
}

.legal-page .purpose-table tbody tr:last-child td {
  border-bottom: none;
}

.legal-page .purpose-table tbody tr:hover td {
  background-color: #f0faf7;
}

.legal-page .purpose-table tbody tr:hover td:first-child {
  background-color: #d4ede6;
}

*:focus-visible {
  outline: 0.125rem solid #4d65ff;
  outline-offset: 0.125rem;
}
