/* -----------------------------
MENTAL HEALTH SELF-ASSESSMENT
----------------------------- */

.mental-health-assessment {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fbc2eb, #a18cd1);
  border-radius: 20px;
  font-family: 'Urbanist', sans-serif;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}

.mental-health-assessment .section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.mental-health-assessment .section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e0d7f5;
}

.assessment-card {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  text-align: left;
  color: #333;
}

.question {
  margin-bottom: 20px;
}

.question label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.q-select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #a18cd1;
  font-size: 1rem;
  outline: none;
}

.submit-btn {
  padding: 12px 24px;
  background: linear-gradient(90deg, #fbc2eb, #a18cd1);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 10px auto;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(161, 140, 209, 0.5);
}

.result {
  margin-top: 25px;
  text-align: center;
}

.result h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #7d3c98;
}

.result p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #5a2d82;
}
