 body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      background-color: #f4f4f4;
      color: #333;
    }

    .admission-page {
      max-width: 1000px;
      margin: 20px auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      overflow: hidden;
    }

    .banner-image {
      width: 100%;
      height: auto;
    }

    .content {
      padding: 20px;
      text-align: center;
    }

    .content h1 {
      color: red;
      margin-bottom: 10px;
    }

    .content p {
      font-size: 18px;
      margin: 10px 0;
      line-height: 1.6;
    }

    .highlight {
      color: #ff3358;
      font-weight: bold;
    }

    .contact {
      margin-top: 15px;
      font-size: 16px;
    }

    .student-photo {
      width: 180px;
      height: auto;
      border-radius: 10px;
      margin-top: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    }

    @media (max-width: 600px) {
      .content p {
        font-size: 16px;
      }

      .student-photo {
        width: 100px;
        max-width: 100px;
         
      }
    }