/* =========================================================
   Gabriel's Angels Special Needs Trust — Stylesheet
   Colors sourced from the official logo:
     Navy    #0c1f3d  |  Gold    #c9921a  |  Sky #4a9fd4
   ========================================================= */

/* ----- Custom Properties ----- */
:root {
  --navy:        #0c1f3d;
  --navy-mid:    #16325a;
  --navy-light:  #1e4a7a;
  --gold:        #c9921a;
  --gold-bright: #f0c030;
  --gold-pale:   #f5e6b8;
  --sky:         #4a9fd4;
  --sky-light:   #8ac8e8;
  --cream:       #faf8f2;
  --cream-dark:  #f0ebe0;
  --green:       #4a7c3a;
  --white:       #ffffff;
  --text-dark:   #0c1f3d;
  --text-mid:    #3a4a6b;
  --text-light:  #6a7a9b;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;

  --container:  1180px;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 2px 16px rgba(12, 31, 61, 0.10);
  --shadow-lg:  0 8px 40px rgba(12, 31, 61, 0.18);
  --transition: 0.25s ease;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ----- Base ----- */
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2.25rem; font-size: 0.95rem; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201, 146, 26, 0.35);
}
.btn-gold:hover {
  background: #b07e14;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 146, 26, 0.45);
}

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--gold); font-weight: 700; }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ----- Navigation ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-left: 120px; /* clear the 108px badge */
}

/* Badge: absolutely positioned at bottom-center of header, half hanging into hero */
.nav-logo-badge {
  position: absolute;
  left: 1.5rem;
  bottom: 0;
  transform: translateY(50%);
  z-index: 10;
  border-radius: 50%;
  line-height: 0;
}

.nav-logo {
  width: 108px;
  height: 108px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 0 0 4px var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-logo-badge:hover .nav-logo {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(0,0,0,0.4), 0 0 0 4px var(--gold-bright);
}

.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-bright);
}
.nav-brand-sub {
  font-size: 0.625rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  display: block;
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-bright);
  background: rgba(255,255,255,0.06);
}
.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 920px) {
  .nav-brand { padding-left: 88px; }
  .nav-brand-name { font-size: 1.3rem; }
  .nav-logo { width: 80px; height: 80px; }
  .nav-logo-badge { bottom: 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy-mid);
    padding: 48px 1.5rem 1.5rem; /* 48px clears the 40px badge overhang */
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.65rem 1rem; font-size: 0.9rem; }
  .nav-cta { margin: 0.5rem 0 0; }
  .nav-cta a { width: 100%; justify-content: center; }
  .hero { padding-top: 40px; }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 54px; /* breathing room for nav-logo-badge */
}

.hero-page { min-height: 48vh; }

/* HERO IMAGE: To add your photo, set a background-image on .hero-bg:
   .hero-bg { background-image: url('/assets/images/hero.jpg');
              background-size: cover; background-position: center; }
   Then remove or hide .hero-img-placeholder. */
.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, var(--sky) 100%);
  border: 3px dashed rgba(255,255,255,0.18);
  gap: 0.6rem;
}
.hero-img-placeholder p {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}
.hero-img-placeholder small {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12, 31, 61, 0.90) 0%,
    rgba(12, 31, 61, 0.65) 38%,
    rgba(12, 31, 61, 0.18) 52%,
    rgba(12, 31, 61, 0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}
.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-text h1 em {
  color: var(--gold-bright);
  font-style: normal;
}
.hero-text p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.25rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-text { max-width: 100%; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(12, 31, 61, 0.55) 0%,
      rgba(12, 31, 61, 0.75) 60%,
      rgba(12, 31, 61, 0.92) 100%
    );
  }
}

/* ----- Page Header (inner pages) ----- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 4.5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  /* subtle crosshatch */
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 12px
  );
}
.page-header .container { position: relative; }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 auto;
}
.gold-bar {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ----- Sections ----- */
.section    { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7rem 0; }

.section-cream { background: var(--cream); }
.section-navy  { background: var(--navy); }
.section-navy h2, .section-navy h3, .section-navy p { color: rgba(255,255,255,0.88); }
.section-navy h2, .section-navy h3 { color: var(--white); }

.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title h2 { margin-bottom: 0.5rem; }
.section-title p  { color: var(--text-mid); max-width: 540px; margin: 0.5rem auto 0; font-size: 1.05rem; }
.section-title .gold-bar { margin-top: 0.85rem; }

/* ----- Cards ----- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.card-icon {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.25rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--gold-bright);
}
.card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 0.6rem; }
.card-body p  { color: var(--text-mid); flex: 1; margin-bottom: 1.25rem; }

/* ----- Mission Layout ----- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 2.5rem; } }

.img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--sky-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px dashed rgba(12,31,61,0.15);
  gap: 0.6rem;
}
.img-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.4; }

/* ----- Stats Banner ----- */
.stats-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 3.5rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ----- CTA Banner ----- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #a87a15 100%);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ----- Give Today ----- */
.give-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 860px) { .give-layout { grid-template-columns: 1fr; } }

.give-methods { display: grid; gap: 1.25rem; }

.give-method {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: box-shadow var(--transition);
}
.give-method:hover { box-shadow: var(--shadow-lg); }
.give-method-icon { font-size: 1.9rem; flex-shrink: 0; width: 2.5rem; text-align: center; }
.give-method h3 { margin-bottom: 0.2rem; font-size: 1.05rem; }
.give-method p  { color: var(--text-mid); font-size: 0.9rem; margin: 0; }

.give-sidebar { position: sticky; top: 90px; }

.impact-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}
.impact-card h3 {
  color: var(--gold-bright);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.impact-list { display: grid; gap: 1rem; }
.impact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.impact-item .tag {
  background: var(--gold);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.impact-item p { font-size: 0.88rem; color: rgba(255,255,255,0.78); margin: 0; line-height: 1.45; }

/* ----- Meet Gabriel ----- */
.gabriel-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--cream-dark) 0%, var(--sky-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px dashed rgba(12,31,61,0.15);
  gap: 0.6rem;
}
.gabriel-photo .ph-icon { font-size: 3rem; opacity: 0.35; }

.blockquote {
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.blockquote p {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy-mid);
  margin-bottom: 0.5rem;
}
.blockquote cite { font-size: 0.875rem; color: var(--text-light); font-style: normal; }

/* ----- About ----- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.value-card .vi { font-size: 2.5rem; margin-bottom: 0.85rem; }
.value-card h3  { margin-bottom: 0.4rem; font-size: 1.1rem; }
.value-card p   { color: var(--text-mid); font-size: 0.9rem; margin: 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--navy);
  border-radius: var(--radius-lg);
  counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute;
  top: -0.85rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--white);
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}
.step h3 { color: var(--gold-bright); margin-bottom: 0.5rem; font-size: 1rem; }
.step p  { color: rgba(255,255,255,0.78); font-size: 0.9rem; margin: 0; }

/* ----- FAQ ----- */
.faq-list { display: grid; gap: 1rem; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.faq-q {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--gold); flex-shrink: 0; }
.faq-a { padding: 0 1.5rem 1.25rem; color: var(--text-mid); font-size: 0.95rem; }

/* ----- Contact ----- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,146,26,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-card h3 { color: var(--gold-bright); margin-bottom: 1.75rem; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.ci-item { display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.ci-item:last-child { margin-bottom: 0; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; width: 1.75rem; text-align: center; color: var(--gold-bright); }
.ci-item h4 { color: var(--gold-pale); margin-bottom: 0.2rem; }
.ci-item p  { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }
.ci-item a  { color: rgba(255,255,255,0.75); }
.ci-item a:hover { color: var(--gold-bright); }

/* ----- Footer ----- */
.site-footer { background: var(--navy); color: var(--white); padding-top: 4.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-logo { width: 60px; height: 60px; object-fit: contain; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.58); font-size: 0.9rem; max-width: 300px; }

.footer-nav h4, .footer-contact h4 { color: var(--gold-bright); margin-bottom: 1rem; }
.footer-nav ul { display: grid; gap: 0.5rem; }
.footer-nav a { color: rgba(255,255,255,0.62); font-size: 0.9rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold-bright); }
.footer-contact p { color: rgba(255,255,255,0.62); font-size: 0.9rem; }
.footer-contact a { color: var(--gold-bright); }
.footer-contact a:hover { text-decoration: underline; }

.footer-bottom { padding: 1.5rem 0; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-bottom: 0.3rem; }
.footer-disclaimer { font-size: 0.72rem !important; color: rgba(255,255,255,0.25) !important; }

/* ----- Content Lists ----- */
.section ul, .section ol {
  margin: 1rem 0 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.section ul li,
.section ol li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.section ol {
  counter-reset: ol-counter;
}
.section ol li {
  counter-increment: ol-counter;
}
.section ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  line-height: 1.8;
}

/* ----- Utilities ----- */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.lead        { font-size: 1.1rem; color: var(--text-mid); }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
