/* صفحة الاختيار قبل التسجيل */
.register-choice {
  padding: 24px 0 48px;
}
.register-choice__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.register-choice__title {
  margin: 0 0 16px;
  font-weight: 800;
  font-size: 26px;
  text-align: center;
  color: #0b1f2a;
}

.register-choice__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 900px){
  .register-choice__grid { grid-template-columns: 1fr; }
}

.choice-card {
  background: #f7fafc;
  border: 1px solid #e6edf3;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(2, 18, 33, 0.07);
}
.choice-card__title {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 24px;
  color: #0a3a46; /* قريب من لون العنوان في الصور */
}
.choice-card__text {
  margin: 0 0 12px;
  line-height: 1.9;
  color: #2b4a57;
  font-weight: 600;
}
.choice-card__hint {
  margin: 8px 0 16px;
  font-weight: 800;
  color: #465e69;
}
.choice-card__cta {
  display: inline-flex;
  justify-content: center;
  min-width: 260px;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1;
  /* نستخدم ألوان الزر الأساسي الموجودة لديك عبر .btn.btn--primary.
     السطران أسفل فقط لو أردت تعزيز التباين على هذه الصفحة تحديدًا: */
  text-decoration: none;
}
