@font-face {
  font-family: 'OpenSans';
  src: url('assets/fonts/OpenSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans';
  src: url('assets/fonts/OpenSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Quicksand';
  src: url('assets/fonts/Quicksand-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Quicksand';
  src: url('assets/fonts/Quicksand-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-200: #a7f3d0;
  --emerald-100: #d1fae5;
  --emerald-050: #ecfdf5;
  --surface: #fbfdfb;
  --surface-strong: #ffffff;
  --surface-soft: #f3f7f4;
  --border: rgba(6, 95, 70, 0.16);
  --text-strong: #16352c;
  --text: #2c4a40;
  --text-muted: #5f7a71;
  --shadow: 0 20px 60px rgba(5, 150, 105, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(167, 243, 208, 0.45), transparent 28%),
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.16), transparent 24%),
    linear-gradient(180deg, #f5fbf8 0%, var(--surface) 22%, #f8fcfa 100%);
}

img {
  display: block;
  max-width: 100%;
}

 a {
  color: var(--emerald-800);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  position: sticky;
  top: 12px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(15, 118, 110, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-strong);
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-name,
.site-nav a,
.hero h1,
.section-heading h2,
.info-card h3,
.policy-block h3,
.contact-card h3 {
  font-family: 'OpenSans', sans-serif;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--emerald-050);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  padding: 52px 0 28px;
}

.hero-copy,
.hero-card,
.info-card,
.policy-shell,
.contact-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(236, 253, 245, 0.96), rgba(255, 255, 255, 0.94));
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald-700);
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.98;
  color: var(--text-strong);
}

.hero-text,
.section-intro,
.policy-shell p,
.contact-note,
.info-card p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
}

.hero-text {
  max-width: 60ch;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'OpenSans', sans-serif;
  font-weight: 700;
}

.button-primary {
  background: var(--emerald-600);
  color: white;
}

.button-secondary {
  background: white;
  color: var(--emerald-800);
  border: 1px solid rgba(5, 150, 105, 0.24);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 28px;
  background: linear-gradient(160deg, var(--emerald-700) 0%, var(--emerald-600) 48%, #34d399 100%);
  color: white;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: auto -40px -50px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.hero-card-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-family: 'OpenSans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card-logo {
  width: min(220px, 70%);
  margin: 36px 0 42px;
}

.hero-stats {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero-stats div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stats dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.hero-stats dd {
  margin: 6px 0 0;
  font-family: 'OpenSans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.section {
  padding-top: 34px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.06;
  color: var(--text-strong);
}

.section-intro {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.card-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.contact-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
}

.info-card h3,
.policy-block h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  color: var(--text-strong);
}

.info-card p,
.contact-note {
  margin: 0;
}

.policy-shell {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
}

.policy-shell > p:first-child {
  margin-top: 0;
  font-size: 1.08rem;
}

.policy-block + .policy-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(5, 150, 105, 0.14);
}

.policy-block p {
  margin: 0;
}

.contact-card.emphasis {
  background: linear-gradient(145deg, rgba(236, 253, 245, 0.95), rgba(255, 255, 255, 0.98));
}

.contact-value {
  margin: 0 0 10px;
  font-family: 'OpenSans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

.contact-value a {
  word-break: break-word;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header,
  .site-footer,
  .hero,
  .card-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    display: grid;
    justify-content: stretch;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 12px;
  }

  .site-header {
    border-radius: 24px;
    padding: 16px;
    top: 8px;
  }

  .hero {
    padding-top: 28px;
    gap: 18px;
  }

  .hero-copy,
  .hero-card,
  .policy-shell,
  .info-card,
  .contact-card {
    padding: 20px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .hero-card-logo {
    width: min(180px, 60%);
    margin: 26px 0 30px;
  }
}
