.cfa-hero-section {
  padding: 48px 0;
  background-color: #f5f5f5;
}

.cfa-hero-box {
  background-size: cover;
  background-position: center;
  padding: 64px 32px;
  border-radius: 24px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.cfa-hero-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.cfa-hero-title {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 500;
  color: #fff;
}

.cfa-hero-divider {
  width: 96px;
  margin-bottom: 24px;
  background-color: #3acb95;
  height: 4px;
}

.cfa-hero-counters {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0px, 1fr));
}

.cfa-hero-counter {
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cfa-hero-counter__title {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
}

.cfa-hero-counter__subtitle {
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.cfa-hero-action {
  color: #020b36;
  background-color: #fff;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border-radius: 16px;
  padding: 40px;
}

.cfa-hero-action__title {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 24px;
  color: #020b36;
  font-weight: 500;
}

.cfa-hero-action__text p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
  color: #52587a;
}

.cfa-hero-action__link {
  font-size: 18px;
  line-height: 28px;
  padding: 14px 32px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  color: #fff;
  font-weight: 500;
  background-color: #2563eb;
  border-radius: 8px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.cfa-hero-action__link:hover,
.cfa-hero-action__link:active,
.cfa-hero-action__link:focus {
  color: #fff;
  background-color: #1d4ed8;
}

@media screen and (max-width: 1023px) {
  .cfa-hero-cols {
    gap: 32px;
    grid-template-columns: auto;
  }

  .cfa-hero-title {
    font-size: 48px;
    line-height: 1;
  }
}

@media screen and (max-width: 767px) {
  .cfa-hero-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .cfa-hero-box {
    min-height: 600px;
    padding: 32px 16px;
  }

  .cfa-hero-cols {
    gap: 24px;
  }

  .cfa-hero-title {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .cfa-hero-divider {
    width: 80px;
    margin-bottom: 16px;
  }

  .cfa-hero-counters {
    gap: 16px;
  }

  .cfa-hero-counter {
    padding: 12px;
    border-radius: 8px;
  }

  .cfa-hero-counter__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 4px;
  }

  .cfa-hero-counter__subtitle {
    font-size: 10px;
    line-height: 1.25;
  }

  .cfa-hero-action {
    padding: 24px;
  }

  .cfa-hero-action__title {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .cfa-hero-action__text p {
    font-size: 12px;
    line-height: 1.625;
    margin-bottom: 16px;
  }

  .cfa-hero-action__link {
    font-size: 14px;
    line-height: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
