/* =========================================================
   Al-Ave Co-op Capital (2A-2C) Limited — Site Stylesheet
   Color scheme sampled from the company logo:
   Primary Blue #1F4FA3 · Deep Navy #10254A · Ink #221F21
   ========================================================= */

:root {
  --blue: #1f4fa3;
  --blue-mid: #2a5cb8;
  --blue-dark: #163b78;
  --blue-darker: #0f2645;
  --blue-pale: #eef3fb;
  --blue-pale-2: #dbe6f6;
  --ink: #221f21;
  --gray-700: #3d434c;
  --gray-500: #6b7280;
  --gray-300: #d9dee6;
  --gray-100: #f4f6fa;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(15, 38, 69, 0.10);
  --shadow-sm: 0 4px 14px rgba(15, 38, 69, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --max-width: 1180px;
  --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--blue-darker);
  line-height: 1.25;
  margin: 0 0 16px;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; color: var(--gray-700); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section {
  padding: 80px 0;
}
.section--alt {
  background: var(--gray-100);
}
.section--navy {
  background: linear-gradient(135deg, var(--blue-darker), var(--blue-dark));
  color: var(--white);
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.82); }

.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head p { margin-bottom: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(31, 79, 163, 0.28);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--blue-darker);
}
.btn-white:hover { background: var(--blue-pale); transform: translateY(-2px); }
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-300);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; }

.nav-desktop { display: flex; align-items: center; gap: 6px; }
.nav-desktop a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.nav-desktop a:hover { color: var(--blue); background: var(--blue-pale); }
.nav-desktop a.active { color: var(--blue); background: var(--blue-pale); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--blue-darker);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  padding: 10px 24px 20px;
}
.nav-mobile a {
  font-family: var(--font-head);
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.nav-mobile a.active { color: var(--blue); }
.nav-mobile.open { display: flex; }

@media (max-width: 900px) {
  .nav-desktop, .header-cta .btn { display: none; }
  .nav-toggle { display: block; }
}

/* ===== Hero slideshow ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--blue-darker);
  color: var(--white);
  min-height: 620px;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(11,29,58,0.94) 0%, rgba(15,38,69,0.86) 38%, rgba(31,79,163,0.68) 100%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.10), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.08), transparent 40%);
  pointer-events: none;
}
.hero-texts {
  position: relative;
  z-index: 2;
  min-height: 620px;
}
.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
}
.hero-text.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.hero-inner {
  max-width: 620px;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.25);
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.hero-dots button.active { background: var(--white); width: 26px; border-radius: 6px; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(15,38,69,0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hero-arrow:hover { background: rgba(255,255,255,0.18); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }
@media (max-width: 700px) {
  .hero-arrow { display: none; }
  .hero, .hero-texts { min-height: 640px; }
}

.page-hero {
  background: linear-gradient(150deg, var(--blue-darker), var(--blue-dark));
  color: var(--white);
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto; }
.breadcrumb {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== Value pills (Home) ===== */
.pill-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -56px;
  position: relative;
  z-index: 2;
}
.pill-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 20px;
  text-align: center;
}
.pill-card .icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
}
.pill-card h3 { font-size: 1rem; margin-bottom: 6px; }
.pill-card p { font-size: 0.88rem; margin-bottom: 0; }

@media (max-width: 900px) {
  .pill-row { grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
}

/* ===== Cards / grids ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all 0.25s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 14px; font-size: 0.95rem; }
.card-link { font-family: var(--font-head); font-weight: 600; color: var(--blue); font-size: 0.9rem; }
.card-link:hover { text-decoration: underline; }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--blue);
  overflow: hidden;
}
.service-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.service-card-body {
  padding: 30px 28px 34px;
}
.service-card .icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card ul { margin: 14px 0 18px; }
.service-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--gray-700);
}
.service-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--blue);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.78rem;
}

/* ===== Split section ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }

.split-media {
  background: var(--blue-pale);
  border-radius: var(--radius);
  min-height: 320px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.split-media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--gray-700);
}
.check-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--blue);
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 1.05rem;
}

/* ===== Stats / values strip ===== */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
.value-item { text-align: center; padding: 20px; }
.value-item .icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

/* ===== Who We Serve (Services) ===== */
.serve-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.serve-item {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 26px 14px;
  transition: all 0.25s ease;
}
.serve-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.serve-item .icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.25rem;
}
.serve-item h3 { font-size: 0.95rem; margin-bottom: 0; }
@media (max-width: 900px) { .serve-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .serve-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Promotions gallery (Services) ===== */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.promo-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: all 0.25s ease;
}
.promo-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.promo-card img { width: 100%; display: block; }
@media (max-width: 900px) { .promo-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ===== Timeline (About) ===== */
.timeline { border-left: 3px solid var(--blue-pale-2); margin-left: 10px; padding-left: 30px; }
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--blue-pale);
}

/* ===== Team ===== */
.team-card { text-align: center; }
.team-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

/* ===== Investors ===== */
.plan-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s ease;
}
.plan-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.plan-card .plan-head {
  background: var(--blue-pale);
  padding: 24px 26px;
  border-bottom: 1px solid var(--gray-300);
}
.plan-card .plan-body { padding: 24px 26px; }
.plan-card.featured .plan-head {
  position: relative;
  background: linear-gradient(135deg, rgba(13,33,64,0.82), rgba(31,79,163,0.48)), var(--plan-head-img, none) center/cover;
  color: var(--white);
  border-bottom: none;
  padding: 34px 26px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.plan-card.featured .plan-head h3 { color: var(--white); }
.tag-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-300);
  padding: 20px 0;
}
.faq-item h3 { font-size: 1.02rem; margin-bottom: 8px; display: flex; gap: 10px; align-items: flex-start; }
.faq-item h3 i { color: var(--blue); margin-top: 4px; }
.faq-item p { margin-bottom: 0; padding-left: 26px; font-size: 0.94rem; }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 20px;
  padding: 56px 48px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 0; }

/* ===== Contact page ===== */
.contact-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--blue-darker);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
}
.contact-info-card h3 { color: var(--white); }
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row strong { display: block; font-family: var(--font-head); margin-bottom: 3px; }
.contact-row span, .contact-row a { color: rgba(255,255,255,0.8); font-size: 0.93rem; }
.social-row { display: flex; gap: 10px; margin-top: 24px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.social-row a:hover { background: var(--white); color: var(--blue); }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 7px;
  color: var(--blue-darker);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--gray-100);
  transition: all 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(31,79,163,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--gray-500); margin-top: 10px; }
.form-status { font-size: 0.9rem; margin-top: 12px; padding: 10px 14px; border-radius: var(--radius-sm); display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e7f6ec; color: #1c7a3c; }
.form-status.err { background: #fdeaea; color: #b3261e; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-300);
  height: 300px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ===== Footer ===== */
.site-footer { background: var(--blue-darker); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-col a, .footer-col span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
  padding: 6px 0;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--blue); color: var(--white); }

/* Back to top */
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 400;
}
.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
