* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  background-color: #f7f8fa;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  padding: 24px;
}

h1,
.page-title {
  text-align: center;
  color: #1d0df5;
  margin-bottom: 1.5rem;
}

.admission-process,
.admission-details {
  width: 100%;
  max-width: 1100px;
  margin: 1.5rem auto;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.admission-details {
  text-align: center;
}

table {
  border-radius: 12px;
}

th,
td {
  border: 1px solid #e5e5e5;
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

th {
  background-color: #f1a868;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-align: center;
}

tr:nth-child(even) td {
  background-color: #fbf7f0;
}

/* Make tables horizontally scrollable on small screens */
.admission-process,
.admission-details {
  display: table;
}

@media (max-width: 59em) {
  body {
    padding: 16px;
  }
  th,
  td {
    padding: 10px 10px;
    font-size: 0.95rem;
  }
}

@media (max-width: 37.5em) {
  body {
    padding: 10px;
  }
  /* Wrap tables in a horizontally scrollable container */
  .admission-process,
  .admission-details {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    white-space: nowrap;
  }
  th,
  td {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
}
