.blue-section {
  background: linear-gradient(to right, #004e92, #000428);
  color: white;
  text-align: center;
}
.blue-section h2 {
  margin-bottom: 20px;
  font-size: 44px;
  font-weight: 300;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.blue-section h2::after {
  content: "";
  width: 50%;
  height: 2px;
  background: #fff;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
.blue-section .reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 32px;
}
.blue-section .reasons .reason {
  padding: 20px;
  text-align: center;
  margin: 0 auto;
}
.blue-section .reasons .reason .icon {
  height: 100px;
  width: 100px;
  margin: 0 auto 20px;
  border: 1px solid #fff;
  min-height: 100px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}
.blue-section .reasons .reason .icon img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  width: 60px;
  height: 60px;
}
.blue-section .reasons .reason h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  padding-top: 12px;
  padding-bottom: 24px;
}
.blue-section .reasons .reason p {
  font-size: 19px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
}
.blue-section .reasons .reason p strong {
  font-size: 19px;
  font-weight: 600;
}
.blue-section .reasons .reason p span {
  font-size: 19px;
}
.blue-section .cta-button {
  margin-top: 30px;
  padding: 10px 20px;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
.blue-section .cta-button:hover {
  background-color: #e65c00;
}

@media (max-width: 768px) {
  .blue-section .reasons {
    flex-direction: column;
    align-items: center;
  }
  .blue-section .reason {
    max-width: 80%;
  }
}
@media (max-width: 480px) {
  .blue-section {
    padding: 30px 10px;
  }
  .blue-section .reason h3 {
    font-size: 18px;
  }
  .blue-section .reason p {
    font-size: 13px;
  }
  .blue-section .cta-button {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/*# sourceMappingURL=style.css.map */
