.admission-rules {
  background: linear-gradient(to right, #e6f0ff, #ffffff);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.rules-container {
  max-width: 950px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.rules-container:hover {
  transform: scale(1.01);
}

.rules-heading {
  font-size: 34px;
  color: #053b6e;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.rules-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #053b6e;
  margin: 10px auto 0;
  border-radius: 2px;
}

.rules-container p {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.rules-container p::before {
  content: "📌";
  position: absolute;
  left: 0;
  top: 2px;
}

.rules-container ul {
  padding-left: 35px;
  margin-bottom: 20px;
}

.rules-container ul li {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  list-style-type: disc;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .rules-container {
    padding: 25px 20px;
  }

  .rules-heading {
    font-size: 28px;
  }

  .rules-container p, .rules-container ul li {
    font-size: 15px;
    padding-left: 25px;
  }

  .rules-container p::before {
    font-size: 16px;
    top: 1px;
  }
}
