:root {
  --bg: rgb(248, 251, 255);
  --text: #333;
  --title: rgb(57, 113, 181);
  --main: rgb(9, 52, 85);
  --radius: 1rem;
  --ring: rgba(57, 113, 181, 0.15);
  --section-bg: rgb(248, 251, 255);
  --bs-btn-bg: var(--title);
  --bs-btn-border-color: var(--title);
  --bs-btn-color: #fff;
  --bs-btn-border-radius: 0.75rem;
  --dark-blue: rgb(12, 48, 109);
}

html {
  font-size: 100%;
}

body {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}

/* ==== Reusable typography ==== */
.heading-main {
  color: var(--main);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-size: 2.75rem;
  text-transform: uppercase;
}
.heading-section {
  color: var(--title);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
  font-size: 1.75rem;
  text-transform: uppercase;
}
.subheading {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
  font-size: 1rem;
}
.body-text {
  color: var(--text);
  font-size: 1rem;
}

.btn {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-brand {
  font-weight: 700;
  background-color: var(--bs-btn-bg);
  color: var(--bs-btn-color);
  border-radius: var(--bs-btn-border-radius);
  border: 2px solid var(--bs-btn-bg);
  padding: 0.65rem 1rem;
  transition: all 0.3s ease;
}
.btn-brand:hover {
  filter: brightness(1.2);
  color: #fff;
}
.btn-ghost {
  background-color: #fff;
  color: var(--title);
  border: 2px solid var(--title);
  border-radius: 0.75rem;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  transition: all 0.25s ease;
}
.btn-ghost:hover {
  background-color: #1e4b87;
  color: #fff;
  border-color: #1e4b87;
  text-decoration: none;
}

.btn-text {
  color: var(--main);
  text-transform: uppercase;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 1px;
}

.soft-card {
  background: #fff;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(21, 33, 60, 0.06);
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.point-list li + li {
  margin-top: 0.25rem;
}

.callout-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.img-decor {
  border-radius: var(--radius);
  width: 100%;
  max-height: 20rem;
  object-fit: cover;
  object-position: center;
}

.section-wrapper {
  padding: 4rem 0.5rem;
}

.info-section {
  background-color: var(--section-bg);
}

.info-section__block {
  margin-bottom: 2rem;
}

.info-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.info-section__header {
  margin-bottom: 1.5rem;
}

.hero-section {
  background-color: var(--dark-blue);
}

.hero-section .heading-main {
  font-size: 3rem;
}

.pb-100 {
  padding-bottom: 100px;
}

@media (min-width: 768px) {
  .soft-card {
    flex-direction: row;
  }

  .hero-section .heading-main {
    font-size: 4rem;
  }
}
