main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16vh;
}

main section {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 260px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
  flex: 1 1 100%;
}

.card:hover {
  transform: translateY(-5px);
}

.emoji {
  font-size: 36px;
  margin-bottom: 10px;
}

.title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
}

.desc {
  color: #555;
  font-size: 14px;
}

.cta {
  margin-top: 30px;
  text-align: center;
}

.cta a > span {
  font-size: 1.5rem;
}

.cta a {
  background: #007bff;
  color: var(--text-main);
  padding: 15px 50px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
