 /* Global Styles */
 body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fcfcfc;
  color: #333;
}

h2 {
  text-align: center;
  margin: 20px;
  color: #2c3e50;
}

h3 {
  text-align: center;
  margin: 20px 0;
  color: #2c3e50;
}

h4 {
  color: #2c3e50;
}

p {
  line-height: 1.7;
  color: #555;
}

.admission-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.features-section {
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: center;
  margin: 20px 0;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: scale(1.02);
}

.feature img {
  width: 40%;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 20px;
}

.feature-content {
  flex: 1;
}

.deadlines-section {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.deadlines-section ul {
  list-style: none;
  padding: 0;
}

.deadlines-section li {
  margin: 10px 0;
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature {
    flex-direction: column; /* Stack image and text for mobile */
  }

  .feature img {
    width: 100%;
    margin: 0 0 20px 0;
  }
}