/* ================= FEES PAGE ================= */

.admissions-page {
  padding: 80px 7%;
  background: #fff;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 70px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.page-content {
  min-width: 0;
  max-width: 950px;
}

.page-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

/* ================= FEES TABLE ================= */

.fees-section {
  margin-top: 50px;
}

.fees-section h2 {
  font-size: 42px;
  font-weight: 300;
  color: #002b5c;
  margin-bottom: 30px;
}

.fees-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.fees-table th {
  background: #7a1c2e;
  color: #fff;
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

.fees-table td {
  padding: 16px;
  border-bottom: 1px solid #eee;
  color: #222;
}

.fees-table tr:hover {
  background: #f8f8f8;
}

/* ================= IMPORTANT NOTES ================= */

.important-notes {
  margin-top: 50px;
  padding: 35px;
  background: #f8f8f8;
  border-left: 5px solid #7a1c2e;
}

.important-notes h3 {
  color: #002b5c;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 400;
}

.important-notes ul {
  padding-left: 20px;
}

.important-notes li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #444;
}

/* ================= IN THIS SECTION ================= */

.enquire-sidebar {
  position: sticky;
  top: 120px;
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.sidebar-logo {
  text-align: center;
  margin-bottom: 25px;
}

.sidebar-logo img {
  width: 65px;
}

.enquire-sidebar h3 {
  font-size: 22px;
  color: #002b5c;
  margin-bottom: 20px;
  font-weight: 500;
}

.enquire-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.enquire-sidebar li {
  border-bottom: 1px solid #ececec;
}

.enquire-sidebar li:last-child {
  border-bottom: none;
}

.enquire-sidebar a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  color: #444;
  transition: 0.3s ease;
}

.enquire-sidebar a:hover {
  color: #7a1c2e;
  padding-left: 6px;
}

.enquire-sidebar a.active {
  color: #7a1c2e;
  font-weight: 700;
}

/* ================= MOBILE ================= */

@media (max-width: 1000px) {
  .admissions-page {
    padding: 70px 25px;
  }

  .page-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .page-content {
    max-width: 100%;
  }

  .enquire-sidebar {
    position: relative;
    top: 0;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .fees-section h2 {
    font-size: 32px;
  }

  .page-content p {
    font-size: 16px;
  }

  .fees-table {
    min-width: 700px;
  }

  .important-notes {
    padding: 28px 22px;
  }
}