/* Basic Reset & Base Styles */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Custom Colors (CSS Variables) */
:root {
  --ibom-green: #004d25;
  --ibom-green-light: #e6f2ed;
  --ibom-orange: #ff8c00;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

/* Utility Classes (mimicking Tailwind) */
.max-w-7xl {
  max-width: 1280px;
}
.max-w-6xl {
  max-width: 1000px;
}
.max-w-5xl {
  max-width: 900px;
}
.max-w-4xl {
  max-width: 700px;
}
.max-w-3xl {
  max-width: 450px;
}
.max-w-2xl {
  max-width: 300px;
}
.max-w-sm {
  max-width: 150px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.sm\:px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.lg\:px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.h-16 {
  height: 4rem;
}
.h-full {
  height: 100%;
}
.h-48 {
  height: 12rem;
}
.h-\[600px\] {
  height: 600px;
}
.w-8 {
  width: 2rem;
}
.w-16 {
  width: 4rem;
}
.w-32 {
  width: 8rem;
}
.w-64 {
  width: 16rem;
}
.w-full {
  width: 100%;
}
.min-h-screen {
  min-height: 100vh;
}

/* line height */
.leading-6 {
  line-height: 1.5rem;
}
.leading-7 {
  line-height: 1.75rem;
}
.leading-8 {
  line-height: 2rem;
}
.leading-9 {
  line-height: 2.25rem;
}
.leading-10 {
  line-height: 2.5rem;
}
.leading-11 {
  line-height: 2.75rem;
}
.leading-12 {
  line-height: 3rem;
}
.leading-14 {
  line-height: 3.5rem;
}
.leading-16 {
  line-height: 4rem;
}
.leading-none {
  line-height: 1;
}
.leading-tight {
  line-height: 1.25;
}
.leading-snug {
  line-height: 1.375;
}
.leading-normal {
  line-height: 1.5;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-loose {
  line-height: 2;
}

/* Flexbox & Grid */
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.flex-col {
  flex-direction: column;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-1 {
  flex: 1;
}
.flex-grow {
  flex-grow: 1;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-14 {
  gap: 5rem;
}
.gap-24 {
  gap: 9rem;
}
.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lg\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lg\:grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.md\:grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Positioning */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.right-0 {
  right: 0;
}
.right--1 {
  right: -1rem;
}
.right--2 {
  right: -2rem;
}
.bottom-0 {
  bottom: 0;
}
.bottom--1 {
  bottom: -1rem;
}
.bottom--2 {
  bottom: -2rem;
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}
.z-4 {
  z-index: 4;
}
.z-5 {
  z-index: 5;
}
.z-6 {
  z-index: 6;
}

/* border radius */
.rounded {
  border-radius: 0.25rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}

/* Backgrounds */
.bg-white {
  background-color: #fff;
}
.bg-gray-50 {
  background-color: #f9fafb;
}
.bg-gray-100 {
  background-color: #f3f4f6;
}
.bg-gray-900 {
  background-color: #111827;
}
.bg-orange-500 {
  background-color: #f97316;
}
.bg-orange-100 {
  background-color: #ffedd5;
}
.bg-green-600 {
  background-color: #16a34a;
}
.bg-green-700 {
  background-color: #15803d;
}
.bg-black {
  background-color: #000;
}
.bg-opacity-10 {
  background-color: rgba(255, 255, 255, 0.1);
}
.bg-opacity-20 {
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-opacity-40 {
  background-color: rgba(0, 0, 0, 0.4);
}
.opacity-9 {
  opacity: 0.9;
}
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}

/* Gradients */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-gray-900 {
  --tw-gradient-from: #111827;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, rgba(17, 24, 39, 0));
}
.to-gray-700 {
  --tw-gradient-to: #374151;
}
.from-green-600 {
  --tw-gradient-from: #16a34a;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, rgba(22, 163, 74, 0));
}
.to-green-700 {
  --tw-gradient-to: #15803d;
}
.from-orange-400 {
  --tw-gradient-from: #fb923c;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, rgba(251, 146, 60, 0));
}
.to-orange-500 {
  --tw-gradient-to: #f97316;
}
.from-green-500 {
  --tw-gradient-from: #22c55e;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, rgba(34, 197, 94, 0));
}
.to-green-600 {
  --tw-gradient-to: #16a34a;
}

/* Borders & Shadows */
.rounded {
  border-radius: 0.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.border-t {
  border-top-width: 1px;
}
.border-gray-800 {
  border-color: #1f2937;
}
.border-white {
  border-color: #fff;
}
.border-none {
  border: none;
}

/* Text */
.text-default {
  color: #333;
}
.text-black {
  color: #000;
}
.text-gray-50 {
  color: #f9fafb;
}
.text-white {
  color: #fff;
}
.text-gray-900 {
  color: #111827;
}
.text-gray-700 {
  color: #374151;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-500 {
  color: #6b7280;
}
.text-gray-400 {
  color: #9ca3af;
}
.text-gray-300 {
  color: #d1d5db;
}
.text-gray-200 {
  color: #e5e7eb;
}
.text-orange-400 {
  color: #fb923c;
}
.text-orange-500 {
  color: #f97316;
}
.text-orange-600 {
  color: #ea580c;
}
.text-green-200 {
  color: #bbf7d0;
}
.text-green-500 {
  color: #22c55e;
}
.text-yellow-400 {
  color: #facc15;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.2rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-2xs {
  font-size: 0.625rem;
  line-height: 0.875rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}
.text-8xl {
  font-size: 6rem;
  line-height: 1;
}
.font-light {
  font-weight: 300;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.italic {
  font-style: italic;
}
.text-center {
  text-align: center;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Spacing */
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.ml-8 {
  margin-left: 2rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pb-0 {
  padding: 0;
}
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.pb-0 {
  padding-bottom: 0;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-0 {
  padding-top: 0;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}

/* overflow */
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-auto {
  overflow-x: auto;
}

/* Components */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
  border: 1px solid transparent;
}
.cursor-pointer {
  cursor: pointer;
}
.button.bg-orange-500 {
  background-color: #f97316;
  color: #fff;
}
.button.bg-orange-500:hover {
  background-color: #ea580c;
}
.button.variant-outline {
  background-color: transparent;
  border-color: #d1d5db;
  color: #374151;
}
.button.variant-outline:hover {
  background-color: #f3f4f6;
}
.button.variant-outline.text-white {
  border-color: #fff;
  color: #fff;
}
.button.variant-outline.text-white:hover {
  background-color: #fff;
  color: #111827;
}
.button.variant-secondary {
  background-color: #fff;
  color: #f97316; /* Default for orange card */
}
.button.variant-secondary:hover {
  background-color: #f3f4f6;
}
.button.variant-secondary.text-green-500 {
  color: #22c55e;
}
.button.size-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
.button.size-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.card-content {
  padding: 1.5rem;
}
.card.bg-gray-900 {
  background-color: #111827;
  color: #fff;
}
.card.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}
.badge.bg-orange-100 {
  background-color: #ffedd5;
  color: #ea580c;
}
.badge.variant-secondary {
  background-color: #e5e7eb;
  color: #4b5563;
}

/* Specific Elements */
.logo-square {
  width: 2rem;
  height: 2rem;
  background-color: #f97316;
  border-radius: 0.25rem;
  transform: rotate(45deg);
}

.hero-section {
  background-image: url("/placeholder.svg?height=600&width=1200");
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.phone-mockup {
  width: 16rem;
  height: 500px;
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 1rem;
}
.phone-screen {
  background-color: #f3f4f6;
  border-radius: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.phone-icon-circle {
  width: 4rem;
  height: 4rem;
  background-color: #f97316;
  border-radius: 9999px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.stats-section .stat-number {
  /* font-size: 3rem; */
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stats-section .stat-unit {
  font-size: 1.875rem;
  vertical-align: super;
}

/* Mobile Menu Specific Styles */
.block {
  display: block;
}
.space-y-1 > * + * {
  margin-top: 0.25rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.font-medium {
  font-weight: 500;
}
.hover\:bg-gray-50:hover {
  background-color: #f9fafb;
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px var(--tw-ring-color);
}
.focus\:ring-inset:focus {
  box-shadow: inset 0 0 0 2px var(--tw-ring-color);
}
.focus\:ring-orange-500:focus {
  --tw-ring-color: #f97316;
}

/* Responsive adjustments */
.hidden {
  display: none;
}
.border-none {
  border: none;
}
/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 1rem;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: relative; /* For mobile menu positioning */
  z-index: 20; /* Ensure header is above other content */
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.main-nav {
  display: none; /* Hidden by default, shown on larger screens */
  align-items: center;
  gap: 1.5rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-img {
  width: 200px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ibom-green);
}

.main-nav {
  display: none; /* Hidden by default, shown on larger screens */
  align-items: center;
  gap: 1.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: color 0.2s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--ibom-orange);
}

.nav-link--active {
  color: var(--ibom-orange);
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease-in-out;
  text-decoration: none; /* Ensure buttons don't have default link underline */
}
.btn--primary {
  background-color: var(--ibom-orange);
  color: #fff;
}

.btn--primary:hover {
  background-color: rgba(255, 140, 0, 0.9); /* ibomOrange-DEFAULT/90 */
}

.btn--green {
  background-color: var(--ibom-green);
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 4rem;
  margin-right: 1rem;
  border-radius: 0.5rem;
}

.btn--green:hover {
  background-color: rgba(0, 77, 37, 0.9); /* ibomGreen-DEFAULT/90 */
}

/* Icons */
.icon-chevron-down,
.icon-briefcase,
.icon-value,
.icon-map-pin,
.icon-mail {
  height: 1.25rem; /* h-5 */
  width: 1.25rem; /* w-5 */
  flex-shrink: 0;
}

.btn--internet-banking {
  display: none; /* Hidden by default, shown on larger screens */
  padding: 0.8rem 1.6rem;
  border-radius: 0.375rem;
  color: #000 !important;
}

.btn--internet-banking .icon-briefcase {
  margin-right: 0.5rem;
  height: 1rem;
  width: 1rem;
}

.btn--internet-banking .icon-chevron-down {
  margin-left: 0.5rem;
  height: 1rem;
  width: 1rem;
}

.hamburger-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: block; /* Shown by default, hidden on larger screens */
}

.hamburger-menu svg {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--gray-700);
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border-radius: 0.375rem;
  overflow: hidden;
  top: calc(100% + 0.5rem); /* Position below trigger */
  left: 0;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: var(--gray-100);
}
.btn--primary {
  background-color: var(--ibom-orange);
  color: #fff;
}

.btn--primary:hover {
  background-color: rgba(255, 140, 0, 0.9); /* ibomOrange-DEFAULT/90 */
}

@media (min-width: 640px) {
  /* sm */
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

@media (min-width: 768px) {
  /* md */
  .md\:flex {
    display: flex;
  }
  .md\:flex-col {
    flex-direction: column;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:block {
    display: block;
  }
  .md\:hidden {
    display: none;
  }
  .site-header {
    padding: 0 1.5rem; /* px-6 */
  }
  .main-nav {
    display: flex;
    gap: 2rem; /* lg:gap-8 */
  }
  .btn--internet-banking {
    display: flex;
  }
  .hamburger-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  /* lg */
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .section-padding {
    padding-top: 3rem;
    padding-bottom: 8rem;
  }

  .site-header {
    padding: 0 2.5rem; /* px-10 */
  }
  .main-nav {
    gap: 2rem; /* lg:gap-8 */
  }
}

@media (max-width: 900px) {
  .ib-hero {
    width: 100%;
  }
  .ib-header {
    font-size: 2.5rem;
    max-width: 250px;
    line-height: 3rem;
  }
  .ib-hero-btn {
    padding: 1rem 2rem !important;
    font-size: 1.2rem !important;
  }
  .mortgage {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "debit" "mobile" "ussd" "internet";
  }
  .footer-flex {
    flex-direction: column;
  }
  .address,
  .max-w-sm {
    max-width: 100%;
  }
  .sm\:flex-col {
    flex-direction: column;
  }
  .sm\:justify-center {
    justify-content: center;
  }
  .sm\:items-center {
    align-items: center;
  }
  .sm\:grid-cols-1 {
    grid-template-columns: 1fr;
  }
  .sm\:text-6xl {
    font-size: 2.75rem;
    line-height: 1;
  }
  .sm\:text-5xl {
    font-size: 2rem;
    line-height: 1;
  }
}
