/* فونت فارسی */
body {
  text-align: center;
  font-family: 'Vazirmatn', Tahoma, sans-serif;
  background: linear-gradient(to right, #e8f5e9, #ffffff);
  margin: 0;
  padding: 0;
  direction: rtl;
}

/* بخش اصلی */
.container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
  flex: 1;
}

h1 {
  color: #1b5e20;
  font-size: 40px;
  margin-bottom: 50px;
  border-bottom: 4px solid #66bb6a;
  display: inline-block;
  padding-bottom: 10px;
}

/* کارت دانش‌آموز */
.student-card {
  text-align: center;
  flex: 1;
  background-color: #ffffff;
  border: 3px solid #c8e6c9;
  border-radius: 20px;
  padding: 20px;
  margin: 30px auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  transition: all 0.4s ease;
  text-align: center;
  min-height: 150px;
}

.student-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-color: #43a047;
}

/* اطلاعات */
.info h2 {
  font-size: 24px;
  color: #2e7d32;
  margin-bottom: 10px;
  text-align: center;
  flex: 1;
}

.info p {
  font-size: 18px;
  color: #37474f;
  margin: 5px 0;
}

/* اطلاعات تماس */
.contact {
  margin-top: 10px;
}

.contact p {
  font-size: 16px;
  color: #1b5e20;
  margin: 4px 0;
}

.contact i {
  margin-left: 8px;
  color: #2e7d32;
}
