.admission-form-section {
  font-family: 'Poppins', sans-serif;
  background: #fff8ef;
  padding: 60px 0;
  color: #333;
}

.intro-text {
  max-width: 850px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.highlight-box {
  background: #fff3e0;
  border-left: 5px solid #ff9800;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 50px;
}

.highlight-box h2 {
  color: #d35400;
  font-weight: 600;
  margin-bottom: 15px;
}

.highlight-box ol {
  margin: 0;
  padding-left: 20px;
  line-height: 1.8;
}

.form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 50px;
}

.form-wrap h2 {
  text-align: center;
  color: #d35400;
  font-weight: 600;
  margin-bottom: 25px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.form-group label {
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.form-group span {
  color: red;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ffe0b2;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff9800;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-submit {
  text-align: center;
  margin-top: 25px;
}

.submit-btn {
  background: linear-gradient(45deg, #ffa726, #fb8c00);
  color: #fff;
  padding: 12px 35px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(45deg, #fb8c00, #f57c00);
}

.cta-box {
  text-align: center;
  background: #fff3e0;
  border-radius: 10px;
  padding: 35px 25px;
}

.cta-box h2 {
  color: #d35400;
  margin-bottom: 10px;
}

.enroll-btn1 {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  margin-top: 15px;
  text-decoration: none;
  font-weight: 600;
}

.enroll-btn1:hover {
  background: #e68900;
}

/* Responsive */
@media (max-width: 768px) {
  .intro-text {
    font-size: 15px;
  }
  .form-wrap {
    padding: 25px 15px;
  }
}
