/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --navy:      #1B2D5E;
  --navy-dark: #111E3F;
  --teal:      #1A6B6B;
  --teal-light:#2A8B8B;
  --gold:      #C8962A;
  --gold-light:#E8B84B;
  --white:     #FFFFFF;
  --off-white: #F7F5F0;
  --cream:     #F0EDE6;
  --slate:     #6B7A8D;
  --slate-light:#8A9BB0;
  --text:      #1A1A2E;
  --text-body: #3D3D5C;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1160px;
  --radius: 16px;
  --radius-sm: 10px;

  --shadow-sm: 0 2px 12px rgba(27,45,94,0.08);
  --shadow-md: 0 8px 32px rgba(27,45,94,0.12);
  --shadow-lg: 0 20px 60px rgba(27,45,94,0.16);

  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   CONTAINER
═══════════════════════════════════════════ */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

h1 em, h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 640px;
  margin: 1rem auto 3rem;
  text-align: center;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.6rem 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,45,94,0.08);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.88rem !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--teal) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 100%);
  overflow: hidden;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero-headline {
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle,
.hero-description {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* hero-logo rules removed (simplified implementation) */

/* Hero Feature Cards */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 860px;
}

.hf-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  border: 1px solid rgba(27,45,94,0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.hf-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,107,107,0.2);
}

.hf-icon {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.hf-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.hf-desc {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   PROBLEM
═══════════════════════════════════════════ */
.problem {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.problem h2 { margin-bottom: 0; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.problem-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  border: 1px solid rgba(27,45,94,0.06);
  transition: all var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,107,107,0.2);
}

.pc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.problem-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CHANGING WORLD
═══════════════════════════════════════════ */
.world {
  padding: 100px 0;
  background: var(--navy);
}

.world h2 { color: var(--white); }
.world .section-label { color: var(--gold-light); }

.world-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.world-text p {
  color: rgba(255,255,255,0.75);
  margin-top: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.world-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  transition: all var(--transition);
}

.stat-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(6px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: .5rem;
}

.stat-number span {
  font-size: 1.2rem;
  color: var(--gold);
}

.stat-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   VISION
═══════════════════════════════════════════ */
.vision {
  padding: 100px 0;
  background: var(--off-white);
  text-align: center;
}

.vision h2 { margin-bottom: 0; }

.vision-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.vstep {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  border: 1px solid rgba(27,45,94,0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.vstep:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.vstep-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  -webkit-text-stroke: 2px var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}

.vstep h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.vstep p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
}

.vstep-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  align-self: center;
  padding-top: 1rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   MATCHING DEMO
═══════════════════════════════════════════ */
.matching {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.matching h2 { margin-bottom: 0; }

.match-demo {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.match-profile {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  align-self: start;
  position: sticky;
  top: 100px;
}

.mp-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mp-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.mp-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.mp-val {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

.match-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.match-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid rgba(27,45,94,0.08);
  transition: all var(--transition);
}

.match-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(26,107,107,0.2);
}

.mc-rank {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--slate-light);
}

.mc-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.mc-location {
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 0.8rem;
}

.mc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

.tag--green { background: #E8F5E9; color: #2E7D32; }
.tag--amber { background: #FFF8E1; color: #F57F17; }
.tag--red   { background: #FFEBEE; color: #C62828; }

.mc-score-wrap {
  text-align: center;
  min-width: 90px;
}

.mc-score-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.mc-bar-wrap {
  background: var(--cream);
  border-radius: 50px;
  height: 6px;
  overflow: hidden;
  margin: 0.4rem 0;
}

.mc-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 50px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mc-score-label {
  font-size: 0.7rem;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════
   TWO COLUMN SECTIONS
═══════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col--reverse .tc-text { order: 2; }
.two-col--reverse .tc-visual { order: 1; }

.tc-text h2 { margin-bottom: 1rem; }
.tc-text p  { color: var(--slate); margin-bottom: 1.5rem; }

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

.bl-icon {
  color: var(--teal);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FOR FAMILIES
═══════════════════════════════════════════ */
.for-families {
  padding: 100px 0;
  background: var(--off-white);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(27,45,94,0.07);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.fc-icon { font-size: 1.5rem; flex-shrink: 0; }

.fc-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.fc-desc {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FOR PROVIDERS
═══════════════════════════════════════════ */
.for-providers {
  padding: 100px 0;
  background: var(--white);
}

.provider-stat {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
}

.provider-stat:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.ps-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.ps-desc {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   REGISTER / FORMS
═══════════════════════════════════════════ */
.register {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}

.register h2 { margin-bottom: 0; }

.forms-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.form-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(27,45,94,0.08);
  box-shadow: var(--shadow-sm);
}

.fp-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream);
}

.fp-icon { font-size: 2rem; }

.fp-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}

.fp-sub {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 0.2rem;
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-group--full {
  grid-column: 1 / -1;
}

.field-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.field-group input,
.field-group select,
.field-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(27,45,94,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,107,107,0.1);
}

.field-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-msg {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  min-height: 1.2em;
  grid-column: 1 / -1;
  text-align: center;
}

.form-msg.success { color: var(--teal); }
.form-msg.error   { color: #C62828; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold-light); }

.footer-domain {
  font-family: var(--font-display);
  font-size: 0.85rem !important;
  color: var(--gold) !important;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease,
              transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .world-inner,
  .two-col,
  .match-demo,
  .forms-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .two-col--reverse .tc-text,
  .two-col--reverse .tc-visual { order: unset; }

  .problem-grid { grid-template-columns: 1fr 1fr; }

  .vision-steps { flex-direction: column; align-items: center; }
  .vstep-arrow  { transform: rotate(90deg); }

  .match-profile { position: static; }

  .hero-features { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .problem-grid  { grid-template-columns: 1fr; }
  .form-fields   { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
  .hero-features { grid-template-columns: 1fr; }
  .nav-links     { display: none; flex-direction: column; }
  .nav-toggle    { display: flex; }
  .navbar        { padding: 0.5rem 0; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    border-top: 1px solid var(--cream);
    box-shadow: var(--shadow-md);
    gap: 1.2rem;
  }
}
.nav-wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1B2D5E;
  letter-spacing: -0.01em;
  margin-left: 0.35rem;
}

.hero-body {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
}

@media (max-width: 700px) {
  .hero-body {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* hero-logo-img rules removed */
}
/* removed custom shrink-on-scroll size adjustments to restore original behavior */

@media (max-width: 768px) {
  .hero-headline {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
    line-height: 1.1;
  }

  .hero .container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .nav-logo img {
    height: 52px;
    width: auto;
  }
}
@media(max-width:700px){

  .hero{
    padding:110px 0 60px;
  }

  .hero .container{
    align-items:center;
    text-align:center;
  }

  .hero-text{
    align-items:center;
  }

  /* removed hero-logo-img rules */

  h1{
    font-size:2.2rem !important;
    line-height:1.15;
  }

  h2{
    font-size:1.8rem !important;
  }

  .match-card{
    grid-template-columns:1fr;
    text-align:center;
    gap:1rem;
  }

  .form-panel{
    padding:1.5rem;
  }

}

.why-exist{
padding:100px 0;
background:var(--off-white);
text-align:center;
}