.section-title {
  text-align: center;
}

.cards {
  display: flex;
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem 0 2rem;
}

.cta-section {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-bottom: 4rem;
}

.cta-section p {
  font-weight: 300;
  font-size: 1.2rem;
  text-align: center;
}

.cta-section button {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1.2rem 2rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 20px;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid var(--primary-color);
}

.cta-section button:hover {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  transition: 0.2s ease-in-out;
}

/* Mobile */

@media (max-width: 992px) {
  .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 450px;
  }

  price-card {
    padding-top: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  price-card {
    padding-top: 1rem;
  }
}
