/* Admission section styling */
.admission-section {
  background-color: #1f3c88; /* deep blue background similar to your sample */
  padding: 50px 0;
}

.admission-section .admission-content h3 {
  font-weight: bold;
  font-size: 1.8rem;
}

.admission-section .admission-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.admission-section .btn-success {
  background-color: #28a745;
  border: none;
  font-weight: bold;
  padding: 10px 20px;
}

.admission-section .btn-success:hover {
  background-color: #218838;
}
/* Make the admission section image smaller */
.admission-img {
  max-width: 70%; /* adjust as needed: try 50%, 60%, 70% */
  height: auto;
  display: block;
  margin: 0 auto; /* centers the image horizontally */
}
