body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0d6efd, #4dabf7);
  color: #333;
}

.container {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 700px;
  width: 90%;
}

h1 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #0d6efd;
}

.subtitle {
  margin-bottom: 2rem;
  color: #555;
  font-size: 1rem;
}

.options {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 200px;
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.card p {
  font-size: 0.9rem;
  color: #555;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #0d6efd;
}

@media (max-width: 600px) {
  .options {
    flex-direction: column;
  }
}
