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

:root {
  --ada-green: #98c739;
  --ada-black: #000000;
  --ada-white: #ffffff;
  --ada-cobalt: #03255e;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: #f6f7fb;
  color: var(--ada-black);
  font-size: 1.125rem;
  line-height: 1.6;
}

.site-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--ada-white);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  overflow: visible;
  transition: background 0.2s ease, padding 0.2s ease, box-shadow 0.2s ease;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ada-cobalt);
  color: var(--ada-white);
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 30;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  height: 9rem;
  width: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: height 0.2s ease;
}

.site-nav.scrolled {
  background: rgba(15, 23, 42, 0.92);
  padding: 0.85rem 1.5rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.site-nav.scrolled .site-logo img {
  height: 7.5rem;
}

.site-nav.scrolled .site-nav-list a {
  color: var(--ada-white);
}

.site-nav.scrolled .site-nav-list a:hover,
.site-nav.scrolled .site-nav-list a:focus-visible,
.site-nav.scrolled .site-nav-list a.is-active,
.site-nav.scrolled .site-nav-list a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.15);
  color: var(--ada-white);
}

.site-nav.scrolled .submenu {
  background: rgba(15, 23, 42, 0.96);
  border-color: rgba(255, 255, 255, 0.15);
}

.site-nav.scrolled .submenu a {
  color: var(--ada-white);
}

.site-nav.scrolled .submenu li+li {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--ada-cobalt);
  color: var(--ada-white);
  border: none;
  border-radius: 0.5rem;
  width: 48px;
  height: 44px;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}

.site-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex: 0 1 auto;
}

.site-nav-list>li {
  display: inline-flex;
  align-items: center;
}

.site-nav ul a {
  text-decoration: none;
  color: var(--ada-black);
  font-weight: 400;
  font-size: 1.5rem;
  padding: 0.35rem 0.6rem;
  border-radius: 0.4rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav ul a:hover,
.site-nav ul a:focus-visible,
.site-nav ul a.is-active,
.site-nav ul a[aria-current="page"] {
  background: var(--ada-cobalt);
  color: var(--ada-white);
}

.site-nav ul a.is-active,
.site-nav ul a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.has-submenu {
  position: relative;
  align-items: flex-start;
}

.has-submenu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.submenu-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.submenu-label a {
  display: inline-flex;
  align-items: center;
}

.submenu-label a::after {
  content: "▾";
  margin-left: 0.35rem;
  font-size: 0.85em;
}

.submenu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem;
  line-height: 1;
}

.submenu-toggle span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  margin-left: 0;
  min-width: 320px;
  max-width: 720px;
  width: max-content;
  background: var(--ada-white);
  border: 1px solid #e2e8f0;
  border-radius: 0.6rem;
  padding: 0.4rem 0;
  display: none;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  max-height: none;
  overflow: visible;
  list-style: none;
  text-align: left;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  columns: 2;
  column-gap: 1.5rem;
}

.submenu.no-columns {
  columns: 1;
  min-width: 260px;
  max-width: 420px;
  width: auto;
}

.submenu li {
  margin: 0;
  break-inside: avoid;
}

.submenu li+li {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 0.3rem;
  margin-top: 0.3rem;
}

.submenu a {
  font-size: 1rem;
  font-weight: 400;
  display: block;
  text-align: left;
  white-space: normal;
  padding: 0.25rem 0 0.25rem 0.6rem;
}

.has-submenu:hover>.submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.has-submenu:focus-within>.submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.has-submenu.submenu-open>.submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.has-submenu.submenu-open .submenu-toggle span {
  transform: rotate(180deg);
}

.nav-cta {
  margin-left: 0;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ada-green);
  color: var(--ada-white);
  padding: 0.65rem 1.35rem;
  border: 2px solid var(--ada-white);
  border-radius: 999px;
  font-weight: 400;
  font-size: 1.125rem;
  box-shadow: none;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.nav-button:hover,
.nav-button:focus-visible {
  transform: translateY(-2px);
  background: var(--ada-cobalt);
}

.contact-icon {
  margin-right: 0.35rem;
}

@media (max-width: 1024px) {
  .site-logo img {
    height: 6rem;
  }

  .site-nav ul a {
    font-size: 1.25rem;
  }
}

@media (max-width: 900px) {
  .site-nav-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    width: 40px;
    height: 38px;
    font-size: 1.25rem;
  }

  .site-nav .site-nav-list {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.75rem 0 0.25rem;
  }

  .site-nav.is-open .site-nav-list {
    display: flex;
    max-height: calc(100vh - 6.5rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav-list>li {
    width: 100%;
    justify-content: space-between;
  }

  .has-submenu {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav ul a {
    width: 100%;
    text-align: left;
    font-size: 1.15rem;
    padding: 0.4rem 0.5rem;
  }

  .submenu-label a::after {
    content: "";
  }

  .submenu-label {
    width: 100%;
    justify-content: space-between;
  }

  .submenu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: 0.5rem;
    border-radius: 999px;
    background: var(--ada-cobalt);
    color: var(--ada-white);
    border: 1px solid rgba(3, 37, 94, 0.2);
    box-shadow: 0 4px 10px rgba(3, 37, 94, 0.18);
    font-size: 1rem;
  }

  .submenu-toggle:focus-visible {
    outline: 2px solid rgba(3, 37, 94, 0.35);
    outline-offset: 2px;
  }

  .submenu-toggle span {
    transform: translateY(-1px);
  }

  .submenu {
    position: static;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    pointer-events: none;
    border: none;
    padding: 0.35rem 0 0.35rem 0.75rem;
    background: transparent;
    max-height: none;
    overflow: hidden;
    box-shadow: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    columns: 1;
  }

  .has-submenu:hover>.submenu,
  .has-submenu:focus-within>.submenu {
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-button {
    font-size: 1rem;
    padding: 0.5rem 1.1rem;
  }

  .site-nav.scrolled {
    padding: 0.6rem 1rem;
  }

  .site-nav.scrolled .site-logo img {
    height: 3.4rem;
  }

  .site-nav.scrolled .menu-toggle {
    width: 36px;
    height: 34px;
    font-size: 1.1rem;
  }

  .site-nav.scrolled .site-nav-list {
    max-height: calc(100vh - 5.25rem);
  }

  .has-submenu.submenu-open>.submenu {
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 55vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 600px) {
  .site-logo img {
    height: 4rem;
  }

  .site-nav {
    padding: 0.85rem 1rem;
  }

  .site-nav ul a {
    font-size: 1.05rem;
    padding: 0.35rem 0.45rem;
  }

  .nav-button {
    font-size: 0.95rem;
    padding: 0.45rem 1rem;
  }

  .site-header {
    padding: 2rem 1rem 1.25rem;
  }

  .site-main {
    padding: 1rem;
  }

  .card {
    max-width: 100%;
  }
}

.site-header {
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: center;
}

.site-main {
  display: flex;
  justify-content: center;
  padding: 1.5rem;
}

.card {
  background: var(--ada-white);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.site-footer {
  margin-top: 3rem;
  background: #0f172a;
  border-top: 1px solid #e2e8f0;
}

.site-footer-top {
  position: relative;
  background: var(--footer-bg-image) center/cover no-repeat;
  padding: 2rem 0;
  color: var(--ada-white);
}

.site-footer-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.site-footer-top .site-container {
  position: relative;
  z-index: 1;
}

.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-column {
  text-align: left;
}

.footer-column h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ada-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-logo {
  display: block;
  width: 120px;
  height: auto;
  margin: 0 auto 0.75rem;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.footer-badge {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto 0.75rem;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.footer-support-ndis {
  display: block;
  width: 180px;
  height: auto;
  margin: 1rem 0 0;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.footer-summary {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

.footer-flags {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.footer-flags img {
  height: 32px;
  width: auto;
  display: block;
  border-radius: 4px;
}

.acknowledgement {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li+li {
  margin-top: 0.4rem;
}

.footer-column a {
  color: var(--ada-white);
  text-decoration: none;
}

.fa-icon {
  margin-right: 0.45rem;
  color: var(--ada-white);
}

.footer-inner {
  padding: 1.5rem 0;
}

.site-footer p {
  margin: 0.25rem 0;
  text-align: center;
  color: var(--ada-white);
}

.site-footer a {
  color: var(--ada-white);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.site-footer a.is-active,
.site-footer a[aria-current="page"] {
  color: var(--ada-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-hero {
  position: relative;
  background: var(--hero-bg-image) center/cover no-repeat;
  color: var(--ada-white);
  padding: 4.5rem 0 4rem;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 37, 94, 0.65);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.home-hero .hero-content {
  max-width: 760px;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-logo img {
  width: min(220px, 100%);
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.2);
}

.service-hero .hero-logo img {
  width: min(380px, 100%);
}

.about-hero {
  background-image: var(--hero-bg-image);
}

.about-hero .hero-inner {
  position: relative;
  z-index: 1;
  justify-content: flex-start;
}

.about-hero .hero-content {
  max-width: 760px;
}

.about-hero .hero-actions {
  justify-content: flex-start;
}

.about-hero .button.secondary.about-secondary {
  border-color: var(--ada-white);
  color: var(--ada-white);
}

.about-hero .button.secondary.about-secondary:hover,
.about-hero .button.secondary.about-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--ada-white);
  color: var(--ada-white);
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero-button {
  border-color: var(--ada-white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 2px solid var(--ada-cobalt);
  background: var(--ada-cobalt);
  color: var(--ada-white);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--ada-green);
  border-color: var(--ada-green);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--ada-cobalt);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(36, 146, 235, 0.1);
  border-color: var(--ada-cobalt);
  color: var(--ada-cobalt);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--ada-cobalt);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field label,
.form-field legend {
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(3, 37, 94, 0.2);
  background: var(--ada-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ada-cobalt);
  box-shadow: 0 0 0 3px rgba(3, 37, 94, 0.15);
}

.contact-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.contact-form fieldset label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.contact-form input[type="checkbox"],
.contact-form input[type="radio"] {
  width: 1rem;
  height: 1rem;
}

.contact-form button.nav-button {
  justify-self: start;
}

.home-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1.5rem 3rem;
  align-items: stretch;
}

.home-card {
  max-width: none;
  width: 100%;
}

.philosophy-section {
  background: linear-gradient(135deg, rgba(3, 37, 94, 0.12), rgba(152, 199, 57, 0.16));
  border: none;
}

.philosophy-content p+p {
  margin-top: 1rem;
}

.philosophy-media {
  display: flex;
  justify-content: center;
}

.philosophy-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.philosophy-logo::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 999px;
  background: conic-gradient(from 180deg,
      rgba(3, 37, 94, 0.35),
      rgba(152, 199, 57, 0.4),
      rgba(3, 37, 94, 0.35));
  animation: philosophy-spin 14s linear infinite;
  opacity: 0.55;
}

.philosophy-logo::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(3, 37, 94, 0.15);
}

.philosophy-logo img {
  width: min(260px, 70%);
  max-width: 100%;
  background: rgba(255, 255, 255, 0.75);
  padding: 1.25rem;
  border-radius: 24px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
  position: relative;
  z-index: 1;
}

.split-section {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.split-section .split-media {
  flex: 1 1 40%;
}

.split-section .split-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
}

.split-section .split-media img.support-image-small {
  width: min(320px, 100%);
  margin: 0 auto;
}

.split-section .split-content {
  flex: 1 1 60%;
}

.mission-section {
  flex-direction: row-reverse;
}

.reverse-section {
  flex-direction: row-reverse;
}

@media (max-width: 900px) {

  .philosophy-logo img {
    width: min(220px, 70%);
  }

  .split-section,
  .mission-section,
  .reverse-section {
    flex-direction: column;
  }
}

.story-section {
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(152, 199, 57, 0.18), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(3, 37, 94, 0.16), transparent 45%),
    radial-gradient(circle at 20% 90%, rgba(3, 37, 94, 0.12), transparent 40%);
  opacity: 0.6;
}

.story-section>* {
  position: relative;
  z-index: 1;
}

.timeline-divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.5rem;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ada-cobalt);
  box-shadow: 0 0 0 6px rgba(3, 37, 94, 0.08);
}

.timeline-line {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(3, 37, 94, 0.4), rgba(152, 199, 57, 0.4));
}

.mission-card {
  position: relative;
  background: linear-gradient(135deg, rgba(3, 37, 94, 0.08), rgba(152, 199, 57, 0.12));
  border: 1px solid rgba(3, 37, 94, 0.12);
}

.mission-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(3, 37, 94, 0.12);
  color: var(--ada-cobalt);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.stats-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(3, 37, 94, 0.06), rgba(152, 199, 57, 0.1));
  border: 1px solid rgba(3, 37, 94, 0.1);
}

.stats-header p {
  margin-top: 0.5rem;
  max-width: 720px;
}

.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stat-card {
  background: var(--ada-white);
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid rgba(3, 37, 94, 0.12);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.stat-card h3 {
  margin: 0.6rem 0 0.35rem;
  font-size: 1.05rem;
}

.stat-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(3, 37, 94, 0.12);
  color: var(--ada-cobalt);
  font-size: 1.1rem;
}

.about-vision {
  margin-bottom: 0.5rem;
}

.values-section {
  margin-top: 0.5rem;
}

@keyframes philosophy-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.banner-section {
  position: relative;
  color: var(--ada-white);
  background: var(--banner-image) center/cover no-repeat;
  border: none;
  overflow: hidden;
}

.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 37, 94, 0.6);
}

.banner-section .banner-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
}

.bullet-list {
  margin: 0;
  padding-left: 1.2rem;
}

.bullet-list li+li {
  margin-top: 0.5rem;
}

.bullet-list.light {
  color: var(--ada-white);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.team-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.team-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.acknowledgement-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.acknowledgement-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--aboriginal-flag-bg-image) center/cover no-repeat;
  opacity: 0.08;
}

.acknowledgement-inner {
  position: relative;
  z-index: 1;
}

.acknowledgement-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.acknowledgement-text {
  max-width: 720px;
}

.acknowledgement-flag {
  width: min(160px, 30vw);
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-cta {
  background: linear-gradient(135deg, rgba(3, 37, 94, 0.08), rgba(152, 199, 57, 0.08));
}

@media (max-width: 900px) {

  .about-hero .hero-actions,
  .cta-actions {
    justify-content: center;
  }

  .acknowledgement-layout {
    flex-direction: column;
  }
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-list a {
  text-decoration: none;
  color: var(--ada-black);
  font-weight: 600;
}

.service-list a:hover,
.service-list a:focus-visible {
  color: var(--ada-cobalt);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.services-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  background: var(--ada-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(3, 37, 94, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 1.25rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  height: 100%;
}

.service-body h3 {
  margin: 0;
}

.service-tag {
  align-self: flex-start;
  background: rgba(3, 37, 94, 0.12);
  color: var(--ada-cobalt);
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.service-body .text-link {
  margin-top: auto;
}

.value-list {
  display: grid;
  gap: 1.5rem;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.value-item {
  margin: 0;
  padding: 1.5rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(3, 37, 94, 0.12);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.value-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(3, 37, 94, 0.12);
  color: var(--ada-cobalt);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.rights-section {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.rights-content {
  flex: 1 1 60%;
}

.rights-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 1rem;
}

.rights-content li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.rights-content li+li {
  margin-top: 0.4rem;
}

.list-icon {
  color: var(--ada-cobalt);
  margin-top: 0.2rem;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(3, 37, 94, 0.08), rgba(152, 199, 57, 0.12));
  border: 1px solid rgba(3, 37, 94, 0.12);
}

.cta-content {
  flex: 1 1 60%;
}

.cta-content p {
  margin-top: 0.6rem;
  margin-bottom: 1.2rem;
}

.cta-button {
  border-color: var(--ada-white);
}

.cta-media {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-media img {
  width: min(240px, 100%);
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}

@media (max-width: 900px) {
  .cta-section {
    flex-direction: column;
    text-align: center;
  }

  .cta-media {
    justify-content: center;
  }
}

.rights-media {
  flex: 1 1 40%;
}

.rights-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

@media (max-width: 900px) {
  .rights-section {
    flex-direction: column;
  }
}

.value-item dt {
  font-weight: 700;
  color: var(--ada-cobalt);
  margin-bottom: 0.35rem;
}

.value-item dd {
  margin: 0;
  color: #1f2937;
}


.faq-list details {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  background: #f9fafb;
}

.faq-list details+details {
  margin-top: 0.75rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.reviews-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.reviews-controls {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  border: 1px solid rgba(3, 37, 94, 0.2);
  background: var(--ada-white);
  color: var(--ada-cobalt);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: rgba(3, 37, 94, 0.08);
  transform: translateY(-1px);
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
}

.reviews-track::-webkit-scrollbar {
  height: 8px;
}

.reviews-track::-webkit-scrollbar-thumb {
  background: rgba(3, 37, 94, 0.2);
  border-radius: 999px;
}

.review-card {
  scroll-snap-align: start;
  background: #f8fafc;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(3, 37, 94, 0.12);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 260px;
}

.review-quote {
  font-size: 2rem;
  color: var(--ada-cobalt);
  line-height: 1;
}

.review-card h3 {
  margin: 0;
}

.review-body {
  margin: 0;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.95rem;
  color: #334155;
  margin-top: auto;
}

.reviewer {
  font-weight: 700;
  color: var(--ada-cobalt);
}

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

@media (max-width: 1100px) {
  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

#action-button {
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 8px;
  background: var(--ada-cobalt);
  color: var(--ada-white);
  font-size: 1rem;
  cursor: pointer;
}

#action-button:hover {
  background: var(--ada-green);
}
