/* Point Cards Styles */
.PointCards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.PointCard__title {
  color: #1e9af7;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 4px;
  line-height: 1.2;
  font-family: 'Maven Pro', sans-serif;
}

.PointCard__heading {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.4;
}

.CardItem {
  background-color: #fff;
}

/* Mobile Styles */
@media (max-width: 799px) {
  .PointCards {
    gap: 20px;
  }

  .PointCards .CardItem__content {
    margin-top: 16px;
  }

  .PointCard__title {
    font-size: 24px;
  }

  .PointCard__heading {
    font-size: 32px;
  }
}

/* Desktop Styles */
@media (min-width: 800px) {
  .PointCards .CardItem {
    align-items: center;
  }

  .PointCards .CardItem__img {
    background-size: contain;
    background-repeat: no-repeat;
  }

  .PointCards .CardItem__info {
    padding-left: 40px;
    padding-right: 40px;
  }
}
