:root {
  --ink: #0b0b0b;
  --navy: #123e7a;
  --green: #3cb54a;
  --green-dark: #1e7a32;
  --cream: #f6f4ef;
  --cream-dark: #ebe6dc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  color: #1a1a1a;
  background: var(--cream);
}

.container-site {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container-site {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.pb-callbar {
  padding-bottom: 4.5rem;
}

@media (min-width: 768px) {
  .pb-callbar {
    padding-bottom: 0;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(18, 62, 122, 0.1);
  box-shadow: 0 8px 24px rgba(18, 62, 122, 0.06);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  background: #fff;
  padding: 0.2rem 0.45rem;
  border-radius: 0.7rem;
}

.site-logo img {
  display: block;
  height: 3rem;
  width: auto;
  max-width: min(14rem, 52vw);
  min-height: 2.25rem;
  object-fit: contain;
  object-position: left center;
}

.site-logo picture,
.footer-logo picture {
  display: contents;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 0.5rem;
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover {
  color: var(--navy);
  background: rgba(18, 62, 122, 0.07);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 14rem;
  max-height: 70vh;
  overflow-y: auto;
  padding: 0.5rem;
  margin-top: 0.25rem;
  background: #fff;
  border: 1px solid rgba(18, 62, 122, 0.12);
  border-radius: 0.75rem;
  box-shadow: 0 16px 40px rgba(18, 62, 122, 0.14);
}

.nav-dropdown.is-open .nav-dropdown__menu {
  display: block;
}

.nav-dropdown__link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a1a1a;
  border-radius: 0.5rem;
}

.nav-dropdown__link:hover {
  background: rgba(18, 62, 122, 0.07);
  color: var(--navy);
}

.nav-dropdown__link--all {
  margin-top: 0.25rem;
  border-top: 1px solid rgba(18, 62, 122, 0.1);
  padding-top: 0.75rem;
  color: var(--green);
}

.nav-menu-btn {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(18, 62, 122, 0.08);
  border-radius: 0.5rem;
}

#nav-panel {
  border-top-color: rgba(18, 62, 122, 0.1);
}

.nav-link-mobile {
  display: block;
  padding: 0.625rem 0.25rem;
  font-weight: 600;
  color: var(--navy);
}

.nav-mobile-sub {
  padding-left: 0.75rem;
  padding-bottom: 0.5rem;
}

.nav-link-mobile--sub {
  font-size: 0.875rem;
  font-weight: 500;
  color: #444;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  background: var(--green-dark);
  color: #fff;
  transition: background 0.15s, transform 0.1s;
}

.btn-call:hover {
  background: #166228;
  color: #fff;
}

.btn-call-pill {
  border-radius: 9999px;
  padding: 0.7rem 1.35rem;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}

.btn-call-xl {
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
}

.btn-call-header {
  white-space: nowrap;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 700;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: 9999px;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

.call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.75rem 1rem;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .call-bar {
    display: none;
  }
}

.call-bar .btn-call {
  width: 100%;
}

.hero-home {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1.25rem;
  margin: 0;
  padding: 1.25rem 0 2rem;
  color: #1a1a1a;
  background:
    radial-gradient(circle at 88% 12%, rgba(60, 181, 74, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  overflow: visible;
}

.hero-home__bg {
  position: relative;
  order: 2;
  height: 15rem;
  margin: 0 1rem;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow:
    10px 10px 0 0 var(--navy),
    0 18px 40px rgba(18, 62, 122, 0.12);
}

.hero-home__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-home__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.hero-home__bg-shade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  z-index: 2;
  background: var(--green);
}

.hero-home--page {
  min-height: auto;
}

.hero-home--page .hero-home__inner {
  padding-top: 0.5rem;
  padding-bottom: 0.25rem;
}

.hero-home .breadcrumb {
  margin-bottom: 0.85rem;
}

@media (min-width: 768px) {
  .hero-home {
    grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 0.9fr);
    align-items: stretch;
    gap: 2.75rem;
    max-width: 76rem;
    margin: 0 auto;
    padding: 2.25rem 1.5rem 2.75rem;
    min-height: 0;
  }

  .hero-home__inner {
    order: 1;
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-home__bg {
    order: 2;
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    min-height: 28rem;
    align-self: stretch;
    margin: 0 0.75rem 0.75rem 0;
  }

  .hero-home--page {
    align-items: stretch;
    padding-top: 1.75rem;
    padding-bottom: 2rem;
  }

  .hero-home--page .hero-home__bg {
    min-height: 24rem;
    height: 100%;
    align-self: stretch;
  }
}

.notice-alert {
  margin-top: 1.35rem;
  padding: 1.05rem 1.2rem;
  background: #fff8eb;
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 1.1rem;
  color: #3a2a12;
  line-height: 1.55;
}

.notice-alert strong {
  color: #9a3412;
}

.ask-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .ask-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ask-grid li {
  background: #fff;
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  color: #333;
  line-height: 1.45;
}

.hero-home__inner {
  position: relative;
  z-index: 1;
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: none;
  padding-top: 0.35rem;
  padding-bottom: 0.25rem;
}

.hero-home__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: rgba(60, 181, 74, 0.12);
  border: 1px solid rgba(60, 181, 74, 0.28);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.hero-home__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero-home__title {
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 14ch;
  margin-bottom: 1rem;
  color: var(--navy);
}

.hero-home__lead,
.hero-home__sub {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 36rem;
  color: #3f3f3f;
}

.hero-home__sub {
  font-size: 1rem;
  color: var(--navy);
}

.hero-home__actions,
.hero-home__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem;
}

.hero-home .btn-outline-light {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: #fff;
}

.hero-home .btn-outline-light:hover {
  background: var(--navy);
  color: #fff;
}

.hero-home__checks {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
  max-width: 26rem;
  width: 100%;
}

.hero-home__checks li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

.hero-home__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--green);
  border-radius: 2px;
  transform: rotate(45deg);
}

.hero-chip {
  display: inline-block;
  padding: 0.42rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border-radius: 9999px;
  border: 1px solid rgba(18, 62, 122, 0.16);
}

.hero-chip:hover {
  background: rgba(18, 62, 122, 0.07);
  border-color: var(--navy);
}

.trust-band {
  background: transparent;
  padding: 1.75rem 0 0.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(18, 62, 122, 0.06);
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  padding: 1.35rem 1.25rem;
  border-right: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

@media (min-width: 768px) {
  .trust-item {
    border-bottom: 0;
  }
  .trust-item:last-child {
    border-right: 0;
  }
}

.trust-item__title {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.trust-item__text {
  font-size: 0.8125rem;
  color: #6b6b6b;
  margin-top: 0.2rem;
}

.section-pad {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-pad {
    padding: 5.5rem 0;
  }
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #555;
  max-width: 40rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.6rem;
  background: #fff;
  border-radius: 1.35rem;
  border: 1px solid transparent;
  box-shadow: 0 1px 0 rgba(18, 62, 122, 0.04);
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}

.service-card:hover {
  box-shadow: 0 18px 40px rgba(18, 62, 122, 0.1);
  transform: translateY(-3px);
  border-color: rgba(60, 181, 74, 0.25);
}

.service-card__icon {
  width: 3.15rem;
  height: 3.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  background: #eef4ea;
  border-radius: 9999px;
  color: var(--navy);
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.service-card--compact {
  padding: 1.15rem 1.3rem;
}

.service-card--compact .service-card__title {
  font-size: 1rem;
}

.service-card--compact .service-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
}

.problem-card {
  padding: 1.4rem 1.35rem;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(18, 62, 122, 0.06);
}

.problem-card h3 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.steps-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: transparent;
  border-radius: 0;
  border: 0;
  position: relative;
}

@media (min-width: 768px) {
  .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 3.1rem;
    right: 0;
    width: 40%;
    height: 1px;
    background: var(--cream-dark);
  }
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
}

.scenario-card {
  padding: 1.25rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid var(--cream-dark);
}

.scenario-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #444;
  font-style: italic;
}

.faq-layout {
  display: grid;
  gap: 2rem;
}

.faq-list {
  background: transparent;
}

@media (min-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
}

.faq-item {
  background: #fff;
  border: 0;
  border-radius: 1rem;
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-item__answer {
  display: none;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #555;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 3.5rem 1.25rem;
  text-align: center;
  margin: 0 0.75rem 1.5rem;
  border-radius: 1.75rem;
}

@media (min-width: 768px) {
  .cta-band {
    margin: 0 1.25rem 2rem;
    padding: 4.25rem 2rem;
    border-radius: 2rem;
  }
}

.cta-band .section-title {
  color: #fff;
  letter-spacing: -0.03em;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 1.75rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.875rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.9rem;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-chips a {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  background: #fff;
  border-radius: 9999px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.875rem;
}

.area-chips a:hover {
  background: var(--navy);
  color: #fff;
}

.emergency-photo {
  border-radius: 1.5rem;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(18, 62, 122, 0.14);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 0.35rem 0.65rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 3rem;
  width: auto;
  max-width: 12rem;
  margin-bottom: 0;
}

.map-embed {
  border: 0;
  border-radius: 1.5rem;
  width: 100%;
  min-height: 300px;
}

.page-hero {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  color: var(--navy);
  padding: 3rem 0 2.5rem;
  margin: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(18, 62, 122, 0.08);
}

@media (min-width: 768px) {
  .page-hero {
    margin: 0;
    padding: 3.75rem 0 3rem;
    border-radius: 0;
  }
}

.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.breadcrumb {
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
  color: #6b6b6b;
}

.breadcrumb a {
  color: var(--navy);
}

.breadcrumb a:hover {
  color: var(--green);
}

.prose-block h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.prose-block h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.25rem 0 0.5rem;
}

.prose-block p,
.prose-block li {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

.prose-block ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.brand-pill {
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 9999px;
  color: var(--navy);
  box-shadow: 0 1px 0 rgba(18, 62, 122, 0.05);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: 0.5rem;
  font-size: 1rem;
  background: #fff;
}

.form-input:focus {
  outline: 2px solid var(--green);
  outline-offset: 0;
}

.section-sub {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.35rem 0 0;
}

@media (min-width: 768px) {
  .check-list {
    grid-template-columns: 1fr 1fr;
  }
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: #333;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--green);
  border-radius: 50%;
}

.check-list--stack {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .check-list--stack {
    grid-template-columns: 1fr;
  }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.howto-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .howto-list {
    grid-template-columns: 1fr 1fr;
  }
}

.howto-item {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.25rem 1.4rem;
}

.howto-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.howto-item p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555;
}

.split-panel {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem 1.6rem;
  height: 100%;
}

.split-panel .check-list {
  margin-top: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.nav-mobile-group summary {
  cursor: pointer;
  list-style: none;
}

.nav-mobile-group summary::-webkit-details-marker {
  display: none;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.72);
}

.hidden {
  display: none !important;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.shrink-0 {
  flex-shrink: 0;
}

.grid {
  display: grid;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-10 {
  gap: 2.5rem;
}

.space-y-2 > :not(:first-child) {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.border-t {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bg-white {
  background: #fff;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.4;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.55;
}

.text-xl {
  font-size: 1.25rem;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.leading-relaxed {
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.underline {
  text-decoration: underline;
}

.text-navy {
  color: var(--navy);
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-white {
  color: #fff;
}

.text-white\/90 {
  color: rgba(255, 255, 255, 0.92);
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.86);
}

.text-white\/70 {
  color: rgba(255, 255, 255, 0.78);
}

.text-white\/60 {
  color: rgba(255, 255, 255, 0.72);
}

.text-white\/50 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white\/45 {
  color: rgba(255, 255, 255, 0.7);
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.h-4 {
  height: 1rem;
}

.w-4 {
  width: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.w-5 {
  width: 1.25rem;
}

.h-7 {
  height: 1.75rem;
}

.w-7 {
  width: 1.75rem;
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex !important;
  }

  .md\:hidden {
    display: none !important;
  }

  .md\:grid-cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: 1fr 1fr;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
