/* Simple CSS Reset */

/* Remove default margin/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Improve text rendering */
body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: #333;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Make images responsive */
img {
  max-width: 100%;
  display: block;
}

section {
  padding: 20px;
}

.pricing-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 50px;
  max-width: 1200px;
  margin: 50px auto;
}

.pricing-card {
  border: 1px solid white;
  border-radius: 10px;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 15px;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

.pricing-card__top {
  display: flex;
  justify-content: space-between;
}

.pricing-card__bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.pricing-card__button {
  width: 100px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .pricing-card__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-card__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
