.threeCards {
  padding: 120px 0;
  background-color: #eef5ff;
}

.threeCards__container {
  max-width: 1280px;
  margin: 0 auto;
  width: 90%;
}

.threeCards__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 768px;
  margin: 0 auto 80px auto;
  text-align: center;
}

.threeCards__top-text {
  color: #3a53a8;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.threeCards__title {
  color: #1c1c1c;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.threeCards__title-accent {
  color: #3a53a8;
}

.threeCards__intro {
  color: #1c1c1c;
  font-family: "Roboto", sans-serif;
  font-size: 18px; /* Text Medium */
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.threeCards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.threeCards__card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px 10px 80px 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s ease;
}

.threeCards__card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.threeCards__iconBox {
  width: 75px;
  height: 75px;
  border-radius: 6px;
  background: #1c327c;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.threeCards__iconImage {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.threeCards__card-top-text {
  color: #1c327c;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}

.threeCards__card-title {
  color: #1c1c1c;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.threeCards__card-text {
  color: #1c1c1c;
  font-family: "Roboto", sans-serif;
  font-size: 16px; /* Text Regular */
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .threeCards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .threeCards {
    padding: 50px 0;
  }
  .threeCards__grid {
    grid-template-columns: 1fr;
  }
  .threeCards__title {
    font-size: 28px;
  }
  .threeCards__intro {
    font-size: 16px;
  }
}
