.choice-page {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.choice-container {
  text-align: center;
  max-width: 800px;
}

.choice-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.choice-subtitle {
  color: rgba(255,255,255,0.9);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

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

.choice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 280px;
  min-height: 220px;
  padding: 2rem;
  border-radius: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.choice-card-student {
  background: linear-gradient(145deg, #ffd93d, #ff9f43);
  color: #2d3436;
}

.choice-card-teacher {
  background: linear-gradient(145deg, #74b9ff, #0984e3);
  color: #fff;
}

.choice-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

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

.choice-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .choice-cards {
    flex-direction: column;
    align-items: center;
  }
}
