@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --------------------------------------------------
   RESET & BASICS
-------------------------------------------------- */
* { margin:0; padding:0; box-sizing:border-box; }
.container { width:90%; max-width:1200px; margin:0 auto; }
img { max-width:100%; height:auto; display:block; }

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
.site-header { background:#fff; border-bottom:1px solid #e5e5e5; }
.header-inner { display:flex; justify-content:space-between; align-items:center; padding:1rem 0; }
.logo { font-size:1.5rem; font-weight:700; color:#000; text-decoration:none; }

/* NAVIGATION */
.nav-menu { display:flex; gap:1.5rem; list-style:none; margin:0 0 0 auto; padding:0; }
.nav-menu a { font-weight:500; text-decoration:none; transition:color .2s; }
.nav-menu a:hover { color:#8EC977; }

/* HEADER CTA */
.header-cta { display:flex; align-items:center; gap:1.5rem; }
.header-cta .cta-text { font-size:.9rem; text-decoration:none; }
.header-cta .cta-text strong { color:#000; }
.btn { background:#8EC977; border:none; padding:.6rem 1.4rem; border-radius:30px; color:#fff; font-weight:600; text-decoration:none; transition:filter .2s; }
.btn:hover { filter:brightness(.9); }

/* --------------------------------------------------
   SECTIONS
-------------------------------------------------- */
section { padding:4rem 0; position: relative; z-index: 0; }
.section-title { text-align:center; font-size:2rem; margin-bottom:2rem; }
.section-desc { text-align:center; max-width:700px; margin:0 auto 2.5rem; font-size:1rem; }

/* GRID UTILITIES */
.grid { display:grid; gap:2rem; }
.grid-2 { grid-template-columns:repeat(2,1fr); }
.grid-3 { grid-template-columns:repeat(3,1fr); }
.grid-4 { grid-template-columns:repeat(4,1fr); }

/* --------------------------------------------------
   CARDS / COMMON UI
-------------------------------------------------- */
.card {
  border:1px solid #e5e7eb;
  border-radius:16px;
  background:#fff;
  box-shadow:0 6px 18px rgba(2,6,23,.06);
  padding:20px;
  text-align:left;
}
.card h3 { margin-top:0; }

/* TESTIMONIAL */
.testimonial { background:#f8f9fb; padding:2rem; border-radius:8px; font-style:italic; }

/* --------------------------------------------------
   FAQ
-------------------------------------------------- */
.faq { max-width:920px; margin:0 auto; }
.faq-item {
  border:1px solid #e5e7eb;
  border-radius:12px;
  background:#fff;
  box-shadow:0 6px 18px rgba(2,6,23,.06);
  overflow:hidden;
}
.faq-item + .faq-item { margin-top:12px; }
.faq-question { padding:14px 16px; font-weight:700; cursor:pointer; background:#f9fafb; }
.faq-answer { display:none; padding:14px 16px; color:#4b5563; background:#fff; }

/* --------------------------------------------------
   PARTNER CAROUSEL
-------------------------------------------------- */
.partner-carousel { overflow:hidden; margin:.75rem 0 0; }
.partner-track {
  display:flex;
  width:calc(200px * 27); /* 9 logos × 3 sets */
  animation:scrolllogos 40s linear infinite;
}
.partner-track img { width:200px; height:80px; object-fit:contain; padding:0 1rem; }
@keyframes scrolllogos {
  0% { transform:translateX(0); }
  100% { transform:translateX(-33.333%); }
}

/* --------------------------------------------------
   ROADMAP NAV (HOME PAGE)
-------------------------------------------------- */
.roadmap-wrapper { position:sticky; top:70px; z-index:1000; text-align:center; }
.roadmap-wrapper.is-fixed { padding:0 1rem; }

.roadmap-nav {
  display:flex; height:34px; padding:0;
  border:2px solid #002C4A; border-radius:9999px;
  background:#f8f9fb; max-width:1200px; margin:0 auto;
  overflow:hidden; align-items:stretch;
}
.roadmap-nav a {
  flex:1; height:100%; line-height:30px; font-weight:700; font-size:.9rem;
  color:#002C4A; text-decoration:none; white-space:nowrap; text-align:center;
  transition:background .2s, color .2s;
}
.roadmap-nav a:hover { color:#8EC977; }
.roadmap-nav a.active { background:#8EC977; color:#fff; border-radius:9999px; }

/* --------------------------------------------------
   CLAIMS PAGE NAV (sticky)
-------------------------------------------------- */
.claims-nav-wrapper {
  margin:2rem auto 3rem;
  text-align:center;
  position:sticky;
  top:70px;
  z-index:1000;
}
.claims-nav {
  display:flex; height:34px; padding:0;
  border:2px solid #002C4A; border-radius:9999px;
  background:#f8f9fb; max-width:900px; margin:0 auto;
  overflow:hidden; align-items:stretch;
}
.claims-nav a {
  flex:1; height:100%; line-height:30px; font-weight:700; font-size:.9rem;
  color:#002C4A; text-decoration:none; white-space:nowrap; text-align:center;
  transition:background .2s, color .2s;
}
.claims-nav a:hover { color:#8EC977; }
.claims-nav a.active { background:#8EC977; color:#fff; border-radius:9999px; }

/* --------------------------------------------------
   THE PROCESS (Four Simple Steps)
-------------------------------------------------- */
#the-process .grid { align-items:start; gap:2.25rem; }

/* Make the process graphic smaller (responsive cap) */
#the-process .process-graphic { display:flex; justify-content:center; }
#the-process .process-graphic img{
  width: clamp(240px, 34vw, 420px);
  height:auto;
}

/* Timeline list */
#the-process .process-steps{
  --dot:   48px;
  --border: 2px;
  --spine:  4px;
  --gap:   28px;
  --nudge:  0px;
  --trim-top: 0px;
  --trim-bottom: 32px;

  position: relative;
  list-style: none;
  margin: 0;
  padding-left: calc(var(--dot) + var(--gap));
  counter-reset: step;
  line-height: 1.7;
}

/* Centered spine */
#the-process .process-steps::before{
  content: "";
  position: absolute;
  left:   calc(var(--border) + (var(--dot) / 2) - (var(--spine) / 2));
  top:    calc((var(--dot) / 2) + var(--border) + var(--nudge) + var(--trim-top));
  bottom: calc((var(--dot) / 2) + var(--border) + var(--nudge) + var(--trim-bottom));
  width:  var(--spine);
  background: #8EC977;
  border-radius: 4px;
}

/* Steps */
#the-process .process-steps > li{
  position: relative;
  counter-increment: step;
  margin: 0 0 28px 0;
  color: #0F172A;
}
#the-process .process-steps > li:last-child{ margin-bottom:0; }

/* Numbered bubble */
#the-process .process-steps > li::before{
  content: counter(step);
  position: absolute;
  left: calc(-1 * (var(--dot) + var(--gap)));
  top:  var(--nudge);
  width: var(--dot);
  height: var(--dot);
  border-radius: 50%;
  background: #fff;
  border: var(--border) solid #002C4A;
  color: #002C4A;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Titles & body copy */
#the-process .step-head{
  display:block;
  font-size:1.25rem;
  font-weight:800;
  color:#0B304E;
  margin:0 0 6px;
}
#the-process .step-body{ color:#475569; }

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.site-footer { background:#f5f5f5; padding:2rem 0; margin-top:4rem; }
.footer-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.footer-grid img { width:100%; height:auto; border-radius:8px; }
.site-footer a { color:#002C4A; text-decoration:none; }
.site-footer a:hover { text-decoration:underline; }

/* --------------------------------------------------
   MOBILE
-------------------------------------------------- */
@media (max-width:767px) {
  /* Collapse header nav */
  .nav-menu { display:none; }
  .burger { display:block; padding:.5rem; background:none; border:none; font-size:1.5rem; }
  .mobile-nav { display:none; text-align:center; }
  .mobile-nav.open { display:block; }

  /* Grid columns */
  .grid-4, .grid-3, .grid-2 { grid-template-columns:1fr; }

  /* Section spacing */
  section { padding:2rem 0; }

  /* Headings & text */
  .section-title { font-size:1.5rem; }
  .section-desc { font-size:.95rem; }

  /* Pill bar horizontal scroll */
  .roadmap-nav, .claims-nav {
    flex-wrap:nowrap;
    overflow-x:auto;
    white-space:nowrap;
    scrollbar-width:none;
  }
  .roadmap-nav::-webkit-scrollbar,
  .claims-nav::-webkit-scrollbar { display:none; }

  /* Images */
  img { max-width:100%; height:auto; }
  .quote-section img { max-height:260px; object-fit:contain; }

  /* Buttons */
  .btn { display:block; width:100%; text-align:center; margin:1rem 0; }

  /* FAQ spacing */
  .faq-item { margin-bottom:.75rem; }
}

@media (max-width:700px){
  #the-process .grid { grid-template-columns:1fr !important; }
  #the-process .process-steps{
    --dot: 36px;
    --gap: 20px;
    --trim-bottom: 4px;
    padding-left: calc(var(--dot) + var(--gap));
  }
}

/* Protection illustrations */
.protection-illustrations { align-items: end; margin: 12px 0 18px; }
.protection-figure { display:flex; justify-content:center; }
.protection-illustration {
  width: 128px; max-width: 90%; height:auto; display:block;
  border-radius: 20px; box-shadow: 0 6px 18px rgba(2,6,23,.06);
}

/* ===== CLAIMS – Steps timeline (matches home page) ===== */
#claims-process .grid { align-items: start; gap: 2.25rem; }

/* Timeline list */
#claims-process .process-steps{
  --dot:   48px;
  --border: 2px;
  --spine:  4px;
  --gap:   28px;
  --nudge:  0px;
  --trim-top: 0px;
  --trim-bottom: 6px;

  position: relative;
  list-style: none;
  margin: 0;
  padding-left: calc(var(--dot) + var(--gap));
  counter-reset: step;
  line-height: 1.7;
}

/* Centered vertical spine */
#claims-process .process-steps::before{
  content: "";
  position: absolute;
  left:   calc(var(--border) + (var(--dot)/2) - (var(--spine)/2));
  top:    calc((var(--dot)/2) + var(--border) + var(--nudge) + var(--trim-top));
  bottom: calc((var(--dot)/2) + var(--border) + var(--nudge) + var(--trim-bottom));
  width:  var(--spine);
  background: #8EC977;
  border-radius: 4px;
}

/* Items */
#claims-process .process-steps > li{
  position: relative;
  counter-increment: step;
  margin: 0 0 28px 0;
  color: #0F172A;
}
#claims-process .process-steps > li:last-child{ margin-bottom: 0; }

/* Numbered bubbles */
#claims-process .process-steps > li::before{
  content: counter(step);
  position: absolute;
  left: calc(-1 * (var(--dot) + var(--gap)));
  top:  var(--nudge);
  width: var(--dot); height: var(--dot);
  border-radius: 50%;
  background:#fff;
  border: var(--border) solid #002C4A;
  color:#002C4A;
  font-weight:700;
  display:flex; align-items:center; justify-content:center;
  line-height:1;
}

/* Head + body */
#claims-process .step-head{
  display:block;
  font-size:1.25rem;
  font-weight:800;
  color:#0B304E;
  margin:0 0 6px;
}
#claims-process .step-body{ color:#475569; }

/* Alternating full-bleed background without overflow */
:root { --alt-section-bg: #ECF8EC; }

section:nth-of-type(odd)::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--alt-section-bg);
  box-shadow: 0 0 0 100vmax var(--alt-section-bg);
  clip-path: inset(0 -100vmax);
  z-index: -1;
  pointer-events: none;
}

/* Keep excluded sections white */
section.no-alt::before { display: none; }

/* ==== Site typography & colour ==== */
:root{
  --text-color:   #0F5C5C;  /* dark green */
  --heading-color:#0F5C5C;  /* same dark green for titles */
}

body{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--text-color);
  background:#fff;
  line-height:1.6;
}

h1,h2,h3,h4,h5,h6,
.section-title,
.step-head{
  color: var(--heading-color);
}

p, li, .section-desc{
  color: var(--text-color);
}

/* Optional: make top nav links dark green too (hover stays brand green) */
.nav-menu a{ color: var(--heading-color); }

/* ===== Big PDF CTA banner ===== */
.cta-banner{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  background:#0B304E;
  color:#fff;
  border-radius:20px;
  padding:28px 32px;
  box-shadow:0 10px 28px rgba(2,6,23,.18);
}
.cta-title{
  margin:0; color:#fff;
  font-weight:800;
  font-size:clamp(1.25rem, 1rem + 1.2vw, 2rem);
}

/* Button styled for dark background */
.btn-cta{
  display:inline-flex; align-items:center; gap:.75rem;
  background:#8EC977;
  color:#0B304E;
  border:0; border-radius:12px;
  padding:.9rem 1.2rem;
  font-weight:700; text-decoration:none;
  box-shadow:0 4px 12px rgba(2,6,23,.18);
  transition:filter .15s, transform .02s;
}
.btn-cta:hover{ filter:brightness(.95); }
.btn-cta:active{ transform:translateY(1px); }

/* Square icon on the right of the button */
.btn-cta .icon{
  display:grid; place-items:center;
  width:34px; height:34px;
  background:#fff; border:2px solid #0B304E;
  border-radius:8px;
}

/* Mobile: stack and make button full-width */
@media (max-width: 800px){
  .cta-banner{ flex-direction:column; align-items:flex-start; gap:14px; }
  .btn-cta{ width:100%; justify-content:center; }
}

/* ===== HERO tweaks ===== */

/* Bigger gap between heading and paragraph just for the hero */
.quote-section .section-title{
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(2.5rem, 1.8rem + 3.2vw, 4.25rem);
  margin: 0 0 20px;
}
.quote-section .section-desc{
  font-size: clamp(1.125rem, 1rem + 0.7vw, 1.375rem);
  line-height: 1.6;
  margin: 0 0 16px;
}

/* Purple pill — base + left-column variant */
.quote-section .hero-pill{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px;
  background:#2E2A5D;
  color:#fff;
  border-radius:28px;
  padding:18px 20px;
  min-height:86px;
  box-shadow:0 12px 28px rgba(2,6,23,.14);
}
.quote-section .hero-pill--left{
  max-width: 720px;
  width: 100%;
  margin-top: 110px;
}
.quote-section .pill-text{
  margin:0;
  font-weight:800;
  color:#fff;
  font-size: clamp(1rem, .9rem + .4vw, 2.25rem);
  line-height:1.25;
  flex:1;
}

/* (Legacy badges layout — keep if used) */
.quote-section .pill-copy{
  display:flex; flex-wrap:wrap; gap:10px 12px;
  align-items:center; color:#fff;
  font-weight:700;
  font-size: clamp(.95rem, .9rem + .2vw, 1.05rem);
}
.quote-section .pill-copy .point{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  background:rgba(255,255,255,.08);
  border-radius:12px;
}

/* Green CTA inside the pill */
.quote-section .btn-quote{
  display:inline-flex; align-items:center; gap:.75rem;
  background:#8EC977; color:#0B304E;
  padding:1rem 1.6rem;
  border-radius:14px; border:0;
  font-weight:800; font-size:1.125rem; text-decoration:none;
  box-shadow:0 10px 24px rgba(142,201,119,.35), 0 2px 6px rgba(2,6,23,.12);
  transition:filter .15s, transform .02s, box-shadow .15s;
  white-space:nowrap;
}
.quote-section .btn-quote:hover{
  filter:brightness(.96);
  box-shadow:0 12px 28px rgba(142,201,119,.42), 0 3px 8px rgba(2,6,23,.16);
}
.quote-section .btn-quote:active{ transform:translateY(1px); }
.quote-section .btn-quote .icon{
  display:grid; place-items:center;
  width:36px; height:36px;
  background:#fff; border:2px solid #0B304E; border-radius:10px;
}

/* Mobile — one column, let the pill span full width */
@media (max-width: 900px){
  .quote-section .hero-pill--left{ max-width: none; width: 100%; }
  .quote-section .hero-pill{
    flex-direction:column; align-items:flex-start;
    padding:16px; gap:12px;
  }
  .quote-section .btn-quote{ width:100%; justify-content:center; }
}

/* Short blurb above the insurer logo strip */
.insurer-blurb{
  text-align: center;
  color: var(--heading-color, #0F5C5C);
  font-size: clamp(1rem, 0.9rem + 0.35vw, 1.25rem);
  margin: 2.5rem auto .5rem;
}

#whats-next{ padding-top: 1.5rem; }
@media (max-width: 900px){
  #whats-next{ padding-top: 1rem; }
}

/* === "What We Do" emblems — lock baseline & size === */
.feature-illustrations{
  align-items: end;
  margin: 12px 0 18px;
}

.feature-figure{
  display: grid;
  place-items: end center;
  height: clamp(140px, 18vw, 190px);
}

.feature-figure .feature-illustration{
  max-height: 100%;
  width: auto;
  margin: 0;
  display: block;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(2,6,23,.06);
}

/* Optional phone tweaks */
@media (max-width: 1024px){
  .feature-figure{ height: clamp(130px, 26vw, 170px); }
}
@media (max-width: 767px){
  .feature-figure{ height: 140px; }
}

/* TEMP colour normaliser for the left emblem (optional) */
.feature-illustrations .feature-figure:first-child .feature-illustration{
  filter: brightness(.96) saturate(.95);
}

/* How we help: one grid that pairs each image with its card */
.help-items{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2rem;
  align-items:start;
}
.help-item{ display:flex; flex-direction:column; align-items:center; }
.help-illustration{
  width: clamp(150px, 20vw, 210px);
  height: auto;
  display:block;
  border-radius:20px;
  box-shadow:0 6px 18px rgba(2,6,23,.06);
  margin-bottom:12px;
}
.help-item .card{ width:100%; text-align:left; }

@media (max-width: 1024px){
  .help-items{ grid-template-columns:repeat(2,1fr); }
}

/* What we do: one grid that keeps each image paired with its card */
#what-we-do .feature-items{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
  align-items:start;
}
#what-we-do .feature-item{
  display:flex;
  flex-direction:column;
  align-items:center;
}
#what-we-do .feature-illustration{
  width: clamp(160px, 24vw, 220px);
  height:auto;
  display:block;
  border-radius:20px;
  box-shadow: 0 6px 18px rgba(2,6,23,.06);
  margin-bottom:12px;
}
#what-we-do .feature-item .card{
  width:100%;
  text-align:left;
}

/* Tablet: two columns */
@media (max-width: 1024px){
  #what-we-do .feature-items{ grid-template-columns:repeat(2,1fr); }
}

/* Mobile: one column */
@media (max-width: 767px){
  #what-we-do .feature-items{ grid-template-columns:1fr; }
}
/* ===== Mobile hero tweaks (under ~768px) ===== */
@media (max-width: 767px){

  /* Purple pill spacing */
  .quote-section .hero-pill{
    padding: 18px;
    margin-top: 14px;
    margin-bottom: 28px;      /* bigger gap before the image */
    gap: 14px;
  }

  /* Pill text a touch bigger */
  .quote-section .pill-copy{
    font-size: 1.125rem;
  }

  /* Bigger button label + target */
  .quote-section .btn-quote{
    font-size: 1.2rem;        /* larger text */
    padding: 1.15rem 1.4rem;  /* taller click target */
    min-height: 56px;
    width: 100%;              /* keep it full-width on mobile */
    justify-content: center;
  }
  .quote-section .btn-quote .icon{
    width: 44px;
    height: 44px;
  }

  /* Make the hero image larger & centered */
  .quote-section .hero-img img{
    display: block;
    margin: 0 auto;
    width: min(92vw, 520px);  /* scale up on phones */
    max-width: none;
  }
}
/* ===== About page layout helpers ===== */

/* spacing + image sizing on desktop/tablet */
.about-team .person img,
.about-split .illustration img{
  width: min(520px, 100%);
  height: auto;
  display: block;
}

/* vertical centering for the split rows */
.about-split{
  align-items: center;
  gap: 2rem;
}

/* slightly tighter text width for long paragraphs */
.about-split .copy{
  max-width: 60ch;
}

/* --- Mobile fixes: stack to one column and center illustrations --- */
@media (max-width: 767px){
  /* force 1 column regardless of any other grid rules */
  .about-team,
  .about-split{
    grid-template-columns: 1fr !important;
  }

  .about-team .person,
  .about-split .illustration,
  .about-split .copy{
    text-align: left;
  }

  .about-split .illustration{
    text-align: center;            /* center the image itself */
  }

  .about-split .illustration img{
    margin: 0 auto 12px;           /* breathing room below image */
    width: min(440px, 100%);
  }

  .about-split .copy{ max-width: none; }
}
/* ===== ABOUT TEAM SECTION ONLY ===== */

.about-team {
  background-color: #e9f5e8;
  padding: 2rem 1rem 3rem;
  color: #002f28;
  font-family: inherit;
}

/* wrapper for Zac + Stacey */
.about-team-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap; /* <-- allow wrap when it's actually too narrow */
}

/* each person block / column */
.about-team .person-card {
  flex: 1 1 45%;        /* try for ~half the row each */
  min-width: 360px;     /* don't shrink to unreadable */
  max-width: 640px;     /* don't get ridiculously wide */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* role/title above photo */
.about-team .person-role {
  font-size: 1.5rem;
  font-weight: 600;
  color: #003f35;
  margin-bottom: 1rem;
  text-align: center;
}

/* headshot: now responsive */
.about-team .person-photo {
  width: 100%;          /* fills the card's available width */
  max-width: 500px;     /* cap so it doesn't get cartoon huge on ultrawide screens */
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
}

/* name */
.about-team .person-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 2rem;
  text-align: center;
}

/* contact block under each name */
.about-team .person-contactblock {
  display: flex;
  flex-direction: column;
  gap: 1rem;            /* vertical space between phone row & email row */
  width: 100%;
  max-width: 500px;
}

/* one contact row = icon + text */
.about-team .contact-row {
  display: flex;
  align-items: center;  /* vertically center icon with first line of text */
  gap: 0.5rem;          /* tighter spacing between icon and text */
  justify-content: flex-start;
  text-align: left;
}

/* icons */
.about-team .contact-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

/* phone/email text */
.about-team .contact-details {
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
  text-align: left;
  word-break: break-word;
  max-width: 440px;
}

.about-team .contact-details a {
  color: #000;
  text-decoration: none;
}
.about-team .contact-details a:hover,
.about-team .contact-details a:focus {
  text-decoration: underline;
}

/* --- MOBILE / TABLET OVERRIDES --- */
@media (max-width: 768px) {

  .about-team-inner {
    gap: 2rem;
    max-width: 100%;
  }

  .about-team .person-card {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-team .person-photo {
    width: 100%;
    max-width: 320px;  /* smaller cap on true small screens */
  }

  .about-team .person-name {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .about-team .person-contactblock {
    gap: 0.75rem;
    max-width: 320px;
  }

  .about-team .contact-row {
    gap: 0.5rem;
    align-items: flex-start; /* if text wraps to 2+ lines, keeps icon toward the top */
  }

  .about-team .contact-icon {
    width: 24px;
    height: 24px;
  }

  .about-team .contact-details {
    font-size: 0.8rem;
    max-width: 320px;
  }
}
