.form-section {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.form-section-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.form-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 2rem 0;
  position: relative;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease;
}

.form-button span {
  font-size: 1.1rem;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* ------ MOBILE ------ */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
