.admission-container {
  max-width: 850px;
  margin: 40px auto;
  padding: 30px;
  font-family: Arial, sans-serif;
  color: #222;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
strong{
    font-weight: bold;
}
    .admission-title {
      color: #8b0000;
      font-size: 29px;
      font-weight: bold;
      margin-bottom: 20px;
      text-align: center;
    }

    .admission-para,
    .admission-list li {
      font-size: 16px;
      margin-bottom: 10px;
    }

    .admission-list {
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .admission-highlight {
      color: #b22222;
      font-weight: bold;
    }

    .admission-note {
      background-color: #f8f8f8;
      border-left: 5px solid #d9534f;
      padding: 15px;
      margin-bottom: 25px;
    }

    .admission-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 25px;
    }

    .admission-button {
      background-color: #4caf50;
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      display: inline-block;
    }
    .admission-button:hover {
      color: rgb(0, 0, 0);
    }

    .admission-contact {
      font-size: 15px;
    }

    .admission-contact strong {
      display: block;
      margin-top: 12px;
      font-weight: bold;
    }

    @media (max-width: 600px) {
      .admission-title {
        font-size: 20px;
      }

      .admission-button {
        width: 100%;
        text-align: center;
      }
    }
