.three-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  text-align: center;
}

.single-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0) 50%
    ),
    #d12428;
  color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* General */
.highlight-red-text {
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0) 50%
    ),
    #ec1b1e;
  color: white;
  padding: 5px 7px;
  border-radius: 10px;
}

/* Description */
#usp-description {
  background-color: rgb(240, 240, 240);
  padding: 30px;
  max-width: 700px;
  border-radius: 15px;
  box-shadow: rgba(51, 51, 51, 0.24) 0px 5px 10px;
}

/* SK Description */
@media screen and (max-width: 468px) {
  #sk-desc {
    font-size: 14px;
  }
}

/* FAQ */
@media screen and (max-width: 468px) {
  .faq-question {
    font-size: 16px;
    color: black;
    font-weight: 600;
  }
}
