.admission-section {
  padding: 50px 0;
  background-color: #fff8ef;
  color: #333;
}

.admission-section h2 {
  color: #d35400;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

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

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

.highlight-box ul {
  list-style: none;
  padding: 0;
}

.highlight-box li {
  margin-bottom: 12px;
  font-size: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.step {
  background: #fff;
  border: 2px solid #ffe0b2;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.step:hover {
  background: #fffaf2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.step-num {
  background: #ff9800;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  margin-bottom: 10px;
}

.cta-section {
  text-align: center;
  margin-top: 50px;
}




.routine-section {
  background: #fffef7;
  padding: 40px 20px;
  border-radius: 10px;
  margin-top: 50px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.routine-section h2 {
  color: #d35400;
  margin-bottom: 10px;
  font-weight: 600;
}

.routine-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 16px;
  color: #444;
}

.routine-table {
  overflow-x: auto;
}

.routine-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 15px;
}

.routine-table th {
  background: #ff9800;
  color: #fff;
  padding: 12px;
  text-align: left;
}

.routine-table td {
  padding: 10px;
  border-bottom: 1px solid #ffe0b2;
  text-align: left;
}

.routine-table tr:nth-child(even) {
  background: #fff8e1;
}

.routine-table tr:hover {
  background: #fff3cd;
  transition: 0.3s;
}

.curriculum-info {
  text-align: center;
  background: #fffaf2;
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 50px;
}

.curriculum-info h2 {
  color: #d35400;
  font-weight: 700;
  margin-bottom: 15px;
}

.curriculum-intro {
  font-size: 16px;
  color: #444;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  justify-content: center;
}

.curriculum-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #ff9800;
}

.curriculum-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.curriculum-card .icon {
  font-size: 32px;
  margin-bottom: 10px;
  color: #ff9800;
}

.curriculum-card h4 {
  color: #d35400;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
}

.curriculum-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .curriculum-info {
    padding: 40px 15px;
  }
  .curriculum-card {
    padding: 20px 15px;
  }
}


@media (max-width: 768px) {
  .routine-table table {
    font-size: 14px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .intro-text p {
    font-size: 16px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}
