body {
  display: flex;
  flex-direction: column;
}

section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}

.card-wrapper {
  width: max(30%, 320px);
  padding: 1rem;
  border: none;
  border-radius: 24px;
  background: linear-gradient(
    45deg,
    rgba(204, 240, 255, 1) 0%,
    rgba(255, 235, 239, 1) 50%,
    rgba(247, 235, 255, 1) 100%
  );
}

.card {
  border-radius: 18px;
  background-color: #ffffff78;
  padding: 2rem;
  box-shadow: 0 0 10px #0000001a;
  display: flex;
  flex-direction: column;
  align-items: center;

  & h3 {
    font-family: "Crimson Pro";
    line-height: 2.5rem;
    font-size: 2.5rem;
    color: #2b1c69;
    font-weight: 700;
    text-align: center;
  }

  & .features {
    display: flex;
    flex-direction: column;
    width: 100%;

    & .feature {
      display: flex;
      justify-content: space-between;
      align-items: center;

      & p {
        color: #818281;
        font-weight: 500;
        text-align: left;
      }
    }
  }
}
