:root {
  --color-bg: #f5f7fb;
  --color-bg-alt: #ffffff;
  --color-primary: #164b74;
  --color-primary-soft: #e5f0fa;
  --color-accent: #d6333f;
  --color-text: #1f2933;
  --color-muted: #6b7280;
  --radius-lg: 14px;
  --radius-md: 10px;
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section--light {
  padding: 3rem 0;
  background: var(--color-bg-alt);
}

.section--accent {
  padding: 4rem 0;
  background: var(--color-primary-soft);
}

/* Top bar */

.top-bar {
  background: #0b2439;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

.top-bar a {
  color: #e5e7eb;
  text-decoration: none;
}

.top-bar__actions {
  display: flex;
  gap: 0.5rem;
}

/* Header */

.site-header__main {
  width: 100%;
  background: #ffffff;
  padding-top:7px;
  padding-bottom:7px;
  box-shadow: 0 0px 5px rgba(0,0,0,5);
  border-bottom: 1px solid #e5e7eb;
  
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  height: 90px;
  width: auto;
}

.brand__name {
  font-weight: 700;
  font-size: 1.05rem;
}

.brand__tagline {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Nav */

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--color-primary);
}

.has-children {
  position: relative;
}

.has-children .sub-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 0;
  list-style: none;
  min-width: 220px;
  display: none;
}

.has-children:hover .sub-menu {
  display: block;
}

.sub-menu li {
  padding: 0;
}

.sub-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Nav toggle (mobile) */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: #123a5b;
}

.btn--outline {
  background: transparent;
  color: #e5e7eb;
  border-color: #e5e7eb;
}

.btn--ghost {
  background: #fff;
  color: var(--color-primary);
  border-color: #e5e7eb;
}

.btn--sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(135deg, #e9f3ff 0%, #f5f7fb 45%, #eef3fb 100%);
}
/* abstract wave accent at the bottom of the hero */
.hero::before {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -45%;
  height: 260px;
  background:
    radial-gradient(circle at 10% 0%, rgba(22, 75, 116, 0.18) 0, transparent 60%),
    radial-gradient(circle at 90% 0%, rgba(22, 75, 116, 0.12) 0, transparent 65%);
  opacity: 0.9;
  transform: translateY(0);
}

/* keep hero content above the wave */
.hero__inner,
.hero__content,
.hero__panel {
  position: relative;
  z-index: 1;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.hero__content p {
  max-width: 36rem;
  color: var(--color-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.75rem;
}

.hero__meta {
  font-size: 0.9rem;
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero form */

.hero__panel {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem 1.75rem 1.5rem;
}

.hero__panel h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.hero-form {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
}

.form-group label {
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.65rem;
  font: inherit;
}

.hero-form__note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Sections */

.section__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.section__header h2 {
  margin-bottom: 0.25rem;
}

.section__header p {
  color: var(--color-muted);
}

/* Grid & cards */

.grid {
  display: grid;
  gap: 1.5rem;
}


.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.card--simple {
  background: #f9fafb;
  box-shadow: none;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.card__link {
  margin-top: 1rem;
  display: inline-block;
  font-size: 0.9rem;
  color: var(--color-primary);
  text-decoration: none;
}

/* Why TSC */

.section__split {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: center;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.icon-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.icon-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.stats {
  display: grid;
  gap: 1rem;
}

.stat {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-soft);
}

.stat__value {
  display: block;
  font-weight: 700;
  color: var(--color-primary);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* CTA strip */

.cta-strip {
  background: var(--color-primary);
  color: #e5e7eb;
  padding: 2rem 0;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Footer */

.site-footer {
  margin-top: 3rem;
  background: #0b2439;
  color: #e5e7eb;
  padding-top: 2.5rem;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 2rem;
}

.site-footer a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer__col h3,
.footer__col h4 {
  margin-top: 0;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__col li {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.site-footer__bottom {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.site-footer__bottom-inner {
  padding: 0.75rem 0 1.25rem;
  font-size: 0.8rem;
  color: #cbd5f5;
}

/* Responsive */

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .section__split {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .cta-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header__main {
    align-items: center;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 0.75rem 1.25rem 1rem;
    display: none;
    box-shadow: var(--shadow-soft);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .has-children .sub-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .has-children:hover .sub-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav.is-open {
    display: block;
  }

  .grid--4,
  .grid--3,
  .site-footer__main {
    grid-template-columns: minmax(0, 1fr);
  }


  .top-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* === HERO OVERRIDE (CLEAN GRADIENT, NO WAVE) === */

.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
  background: radial-gradient(circle at top left, #e5f0fa 0%, #f5f7fb 45%, #dde8fb 100%);
}

/* keep hero content positioned correctly */
.hero__inner,
.hero__content,
.hero__panel {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .hero {
    padding: 3.5rem 0 3rem;
  }
}
/* Remove unwanted space between CTA and footer */
.cta-strip {
  margin-bottom: 0;
}

.site-footer {
  margin-top: 0;
}
/* News */
.news-search {
  margin-top: 1.25rem;
  max-width: 520px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: .75rem;
}

.news-card__title {
  margin: 0 0 .75rem;
}

.news-card__title a {
  color: inherit;
  text-decoration: none;
}
.news-card__title a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: .25rem .55rem;
  border-radius: 999px;
  font-size: .85rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.75);
}

.news-post {
  padding: 2rem;
}

.news-post h2, .news-post h3 {
  margin-top: 1.5rem;
}
.news-post p {
  color: rgba(15, 23, 42, 0.88);
}
.news-post-meta {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-top: .75rem;
}
/* Contact: two-column layout like homepage */
.contact-hero-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.contact-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 960px) {
  .contact-two-col {
    grid-template-columns: 1fr;
  }
}

.contact-left {
  display: grid;
  gap: 1.25rem;
}

.contact-right {
  min-width: 0;
}

/* Soft cards (if you don't already have this from FAQ) */
.card--soft {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.06);
}

/* Contact info */
.contact-info {
  display: grid;
  gap: .9rem;
  margin-top: .75rem;
}

.contact-info__label {
  font-size: .9rem;
  color: var(--color-muted);
  margin-bottom: .15rem;
}

.contact-info__value a { text-decoration: none; }
.contact-info__value a:hover { text-decoration: underline; }

/* Hours list */
.hours {
  list-style: none;
  padding: 0;
  margin: .75rem 0 0;
  display: grid;
  gap: .5rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem .7rem;
  border-radius: 12px;
  background: #f5f7fb;
}

/* Quick stack */
.stack { display: grid; gap: .75rem; }
.btn--full { width: 100%; display: inline-flex; justify-content: center; }

/* Form panel (matches homepage card feel) */
.contact-panel {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.contact-panel__head {
  padding: 1.5rem 1.5rem 0.75rem;
}

.contact-panel__head h2 {
  margin: 0 0 .35rem;
}

.contact-panel__form {
  padding: 0 1.5rem 1.5rem;
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: .35rem;
}

.req { color: #b91c1c; }

.input {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  font: inherit;
}

textarea.input { resize: vertical; }

.contact-panel__actions {
  margin-top: .5rem;
  display: grid;
  gap: .75rem;
}

.contact-panel__help {
  text-align: center;
  font-size: .95rem;
}

.contact-panel__help a {
  font-weight: 700;
  text-decoration: none;
}

.contact-panel__help a:hover {
  text-decoration: underline;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Policy / legal pages */
.policy-card {
  padding: 2rem;
}

@media (max-width: 720px) {
  .policy-card { padding: 1.35rem; }
}

.policy-card h2 {
  margin-top: 1.75rem;
}

.policy-card h2:first-of-type {
  margin-top: 0;
}

.policy-card p, .policy-card li {
  color: rgba(15, 23, 42, 0.88);
}

.policy-card ul {
  margin: .75rem 0 0;
  padding-left: 1.15rem;
}

.policy-callout {
  background: #f5f7fb;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
}

.policy-contact {
  margin-top: .75rem;
  display: grid;
  gap: .25rem;
}

.policy-hr {
  margin: 1.75rem 0 1rem;
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}

.tiny { font-size: .9rem; }

