html, body {
  margin: 0;
  padding: 0;
  background: rgba(20, 20, 20, 0.877);
}


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Times New Roman', Times, serif;
}
.bg{
  background-color:rgb(29, 29, 29);
}

/* PAGE */
.admission-page {
  background: rgba(20, 20, 20, 0.877);
  color: #e5e7eb;
  padding-bottom: 80px;
}

/* HERO */
.admission-hero {
  text-align: center;
  margin-top: 20px ;
 
}
.admission-hero h1 {
  font-size: 42px;
}
.admission-hero p {
  font-size: 18px;
  color: #bfbfbf;
}

/* CTA */
.cta-box {
  max-width: 900px;
  margin: 40px auto;
  background: #1b1f23;
  border-radius: 18px;
  padding: 40px;
  text-align: center;
}
.cta-box h2 {
  margin-bottom: 10px;
}
.apply-btn {
  display: inline-block;
  margin: 20px 0;
  padding: 14px 26px;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}
.apply-btn:hover {
  background: #1d4ed8;
}
.cta-points {
  list-style: none;
  margin-top: 15px;
  color: #cbd5e1;
}

/* STEPS */
.steps-section {
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 20px;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.step-card {
  background: #1b1f23;
  border-radius: 16px;
  padding: 30px;
}
.step-num {
  background: #2563eb;
  color: white;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 10px;
}

/* DOCUMENTS */
.docs-section {
  max-width: 1000px;
  margin: 70px auto;
  background: #3b2f00;
  padding: 40px;
  border-radius: 20px;
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
}
.docs-grid ul {
  list-style: none;
}
.docs-grid li {
  margin-bottom: 10px;
}

/* INFO */
.info-box {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  border: 1px solid #2563eb;
  border-radius: 16px;
}
.info-box ul {
  margin-top: 15px;
  list-style: disc;
  padding-left: 20px;
}

/* HELP */
.help-section {
  text-align: center;
  margin-top: 80px;
}
.help-section h2 {
  margin-bottom: 10px;
}
.contact {
  margin-top: 10px;
  color: #60a5fa;
}

.download-form {
  margin: 60px auto 0;
  padding: 30px;
  max-width: 700px;
  text-align: center;

  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.download-form h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ffffff;
}

.download-form p {
  font-size: 15px;
  color: #d1d5db;
  margin-bottom: 20px;
}

.download-btn {
  display: inline-block;
  padding: 14px 26px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
}

.download-btn:hover {
  background: #1d4ed8;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .steps-grid,
  .docs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .admission-hero h1 {
    font-size: 26px;
  }

  .cta-box,
  .docs-section,
  .info-box,
  .download-form {
    padding: 20px;
    margin-left: 15px;
    margin-right: 15px;
  }

  .section-title {
    font-size: 22px;
  }
}
