/* === RICH HARVEST - Main Stylesheet === */
/* Computer Systems Design & Integrated Systems */

:root {
  --bp-navy: #0d1b2a;
  --bp-navy-light: #142333;
  --bp-cream: #f7f3eb;
  --bp-cream-dark: #ede6d8;
  --bp-gold: #c49a2c;
  --bp-gold-dark: #a37f20;
  --bp-teal: #1e7a6c;
  --bp-teal-dark: #165e52;
  --bp-coral: #d47253;
  --bp-coral-dark: #b85d42;
  --bp-charcoal: #1a1a2e;
  --bp-slate: #3d4352;
  --bp-text-light: #f0ebe3;
  --bp-text-muted: #6b6d7a;
  --bp-border-light: #d4cdbc;
  --bp-border-dark: #2a3d54;
  --bp-white: #ffffff;
  --bp-error: #c0392b;
  --bp-success: #277a4a;

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', monospace;

  --header-height: 72px;
  --max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--bp-charcoal);
  background-color: var(--bp-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--bp-teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--bp-coral);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

ul, ol {
  list-style: none;
}

/* === ACCESSIBILITY === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--bp-gold);
  outline-offset: 2px;
}

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--bp-gold);
  color: var(--bp-navy);
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 12px;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--bp-navy);
  border-bottom: 3px solid var(--bp-gold);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bp-text-light);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.logo:hover {
  color: var(--bp-gold);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
}

/* === NAVIGATION === */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list a {
  display: block;
  padding: 8px 16px;
  color: var(--bp-text-light);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--bp-gold);
  background-color: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

/* === MOBILE NAV TOGGLE === */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--bp-border-dark);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--bp-text-light);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === MAIN CONTENT === */
.main-content {
  margin-top: var(--header-height);
}

/* === SECTION BASE === */
.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-dark {
  background-color: var(--bp-navy);
  color: var(--bp-text-light);
}

.section-cream {
  background-color: var(--bp-cream);
  color: var(--bp-charcoal);
}

.section-white {
  background-color: var(--bp-white);
  color: var(--bp-charcoal);
}

.section-accent {
  background-color: var(--bp-navy-light);
  color: var(--bp-text-light);
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bp-gold);
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid var(--bp-gold);
  border-radius: var(--radius-sm);
}

.section-dark .section-label {
  background-color: var(--bp-navy-light);
}

.section-cream .section-label,
.section-white .section-label {
  color: var(--bp-teal);
  border-color: var(--bp-teal);
  background-color: var(--bp-cream-dark);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: inherit;
}

.section-subheading {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 720px;
  color: var(--bp-text-muted);
}

.section-dark .section-subheading {
  color: #b8bfcc;
}

/* === HERO SECTION === */
.hero {
  padding: 0;
  background-color: var(--bp-navy);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-pattern svg {
  width: 100%;
  height: 100%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  color: var(--bp-text-light);
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--bp-gold);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 2px solid var(--bp-gold);
  border-radius: var(--radius-sm);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--bp-text-light);
}

.hero-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 36px;
  color: #c4ccd8;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic {
  width: 100%;
  max-width: 480px;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--bp-gold);
  color: var(--bp-navy);
}

.btn-primary:hover {
  background-color: var(--bp-gold-dark);
  color: var(--bp-navy);
}

.btn-secondary {
  background-color: transparent;
  color: var(--bp-text-light);
  border: 2px solid var(--bp-text-light);
}

.btn-secondary:hover {
  background-color: var(--bp-text-light);
  color: var(--bp-navy);
}

.btn-coral {
  background-color: var(--bp-coral);
  color: var(--bp-white);
}

.btn-coral:hover {
  background-color: var(--bp-coral-dark);
  color: var(--bp-white);
}

.btn-teal {
  background-color: var(--bp-teal);
  color: var(--bp-white);
}

.btn-teal:hover {
  background-color: var(--bp-teal-dark);
  color: var(--bp-white);
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background-color: var(--bp-navy-light);
  border: 2px solid var(--bp-border-dark);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: var(--bp-gold);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--bp-gold);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--bp-text-light);
}

.service-desc {
  font-size: 0.95rem;
  color: #b8bfcc;
  line-height: 1.6;
}

/* Light variant */
.section-cream .service-card {
  background-color: var(--bp-white);
  border-color: var(--bp-border-light);
}

.section-cream .service-card:hover {
  border-color: var(--bp-teal);
}

.section-cream .service-icon {
  color: var(--bp-teal);
}

.section-cream .service-title {
  color: var(--bp-charcoal);
}

.section-cream .service-desc {
  color: var(--bp-slate);
}

/* === ABOUT PREVIEW === */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.about-preview-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--bp-charcoal);
}

.about-preview-text p {
  margin-bottom: 16px;
  color: var(--bp-slate);
  line-height: 1.8;
}

.about-preview-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-graphic {
  width: 100%;
  max-width: 440px;
}

/* === STATS BAR === */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
  border: 2px solid var(--bp-border-dark);
  border-radius: var(--radius-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--bp-gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #b8bfcc;
  font-weight: 500;
}

/* Light stats */
.section-cream .stat-item {
  border-color: var(--bp-border-light);
}

.section-cream .stat-number {
  color: var(--bp-teal);
}

.section-cream .stat-label {
  color: var(--bp-slate);
}

/* === CONTACT SECTION === */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--bp-text-light);
}

.contact-info-detail {
  margin-bottom: 24px;
}

.contact-info-detail dt {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--bp-gold);
  margin-bottom: 4px;
}

.contact-info-detail dd {
  color: #c4ccd8;
  font-size: 1rem;
}

/* === FORM === */
.contact-form {
  background-color: var(--bp-navy-light);
  border: 2px solid var(--bp-border-dark);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--bp-text-light);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  background-color: var(--bp-navy);
  border: 2px solid var(--bp-border-dark);
  border-radius: var(--radius-sm);
  color: var(--bp-text-light);
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--bp-gold);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #5a6270;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  font-size: 0.85rem;
  color: var(--bp-error);
  margin-top: 4px;
  display: none;
}

.form-group.error .form-error {
  display: block;
}

.form-group.error .form-input,
.form-group.error .form-textarea {
  border-color: var(--bp-error);
}

.form-success {
  display: none;
  padding: 16px 20px;
  background-color: var(--bp-success);
  color: var(--bp-white);
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-weight: 600;
}

.form-success.visible {
  display: block;
}

/* === FOOTER === */
.site-footer {
  background-color: var(--bp-navy);
  border-top: 4px solid var(--bp-gold);
  color: var(--bp-text-light);
  padding: 60px 24px 30px;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  color: #b8bfcc;
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--bp-gold);
}

.footer-column a {
  display: block;
  color: #b8bfcc;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 4px 0;
}

.footer-column a:hover {
  color: var(--bp-gold);
  text-decoration: none;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--bp-border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #7a8496;
  flex-wrap: wrap;
  gap: 12px;
}

/* === PAGE HERO (Inner Pages) === */
.page-hero {
  padding: 80px 24px 60px;
  background-color: var(--bp-navy-light);
  color: var(--bp-text-light);
  border-bottom: 3px solid var(--bp-gold);
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--bp-text-light);
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: #b8bfcc;
  max-width: 600px;
  margin: 0 auto;
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--bp-gold);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #b8bfcc;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--bp-gold);
  text-decoration: underline;
}

.breadcrumb .sep {
  color: #5a6270;
}

/* === CONTENT PAGE LAYOUT === */
.content-page {
  padding: 64px 24px;
}

.content-page-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* === PROSE / POLICY CONTENT === */
.prose {
  line-height: 1.9;
  color: var(--bp-charcoal);
}

.prose h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bp-navy);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bp-border-light);
}

.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bp-charcoal);
  margin: 32px 0 12px;
}

.prose p {
  margin-bottom: 16px;
  color: var(--bp-slate);
}

.prose ul,
.prose ol {
  margin: 16px 0 24px 24px;
}

.prose ul li,
.prose ol li {
  margin-bottom: 8px;
  color: var(--bp-slate);
  list-style-type: disc;
}

.prose ol li {
  list-style-type: decimal;
}

.prose strong {
  color: var(--bp-charcoal);
}

.prose a {
  color: var(--bp-teal);
}

/* === SECTION DIVIDER === */
.section-divider {
  height: 6px;
  background: linear-gradient(90deg, var(--bp-navy) 0%, var(--bp-gold) 50%, var(--bp-teal) 100%);
}

/* === SERVICE DETAIL PAGE === */
.service-detail-card {
  background-color: var(--bp-white);
  border: 2px solid var(--bp-border-light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  margin-bottom: 28px;
}

.service-detail-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bp-navy);
  margin-bottom: 12px;
}

.service-detail-card p {
  color: var(--bp-slate);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-detail-card .features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.service-detail-card .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--bp-slate);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-icon {
  color: var(--bp-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* === PROCESS STEPS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-step {
  text-align: center;
  padding: 28px 20px;
  background-color: var(--bp-navy-light);
  border: 2px solid var(--bp-border-dark);
  border-radius: var(--radius-md);
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bp-gold);
  color: var(--bp-navy);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bp-text-light);
  margin-bottom: 8px;
}

.process-step p {
  color: #b8bfcc;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* === CTA BANNER === */
.cta-banner {
  padding: 64px 24px;
  background-color: var(--bp-navy);
  color: var(--bp-text-light);
  text-align: center;
  border-top: 3px solid var(--bp-gold);
}

.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #b8bfcc;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px 60px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-graphic {
    max-width: 360px;
  }

  .hero-heading {
    font-size: 2.4rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-graphic {
    max-width: 340px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--bp-navy);
    border-bottom: 3px solid var(--bp-gold);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 24px;
    z-index: 999;
  }

  .main-nav[aria-hidden="false"] {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-list a {
    font-size: 1.1rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .service-detail-card .features {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 48px 16px;
  }

  .footer-grid {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 60px 16px 48px;
  }

  .hero-heading {
    font-size: 1.7rem;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* === UTILITY === */
.text-center {
  text-align: center;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-48 {
  margin-bottom: 48px;
}
