


/* =========================
   HEADER
========================= */
.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
}

.divider {
  width: 70px;
  height: 3px;
  background: var(--accent-red);
  margin: 10px auto 30px;
  border-radius: 5px;
}

/* =========================
   CARD
========================= */
.courses-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* =========================
   TABLE
========================= */
.courses-table {
  width: 100%;
  border-collapse: collapse;
}

/* HEADER */
.courses-table thead {
  background: var(--primary-blue);
  color: #fff;
}

.courses-table th {
  padding: 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* BODY */
.courses-table td {
  padding: 14px;
  font-size: 14px;
  color: #333;
  vertical-align: top;
}

/* ROW */
.courses-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}

/* STRIPED */
.courses-table tbody tr:nth-child(even) {
  background: #f9fafc;
}

/* HOVER */
.courses-table tbody tr:hover {
  background: #eef2ff;
}

/* COLUMN STYLING */
.courses-table td:first-child {
  font-weight: 600;
  color: var(--primary-blue);
}

.courses-table td:nth-child(2) {
  color: var(--accent-red);
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .section-header h2 {
    font-size: 24px;
  }

  .courses-card {
    padding: 15px;
  }

  .courses-table th,
  .courses-table td {
    font-size: 12px;
    padding: 10px;
  }

}