

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

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

/* =========================
   CARD
========================= */
.courses-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px 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 STYLE */
.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;
  transform: scale(1.01);
}

/* =========================
   COURSE TAG
========================= */
.course-tag {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  margin-left: 8px;
  border-radius: 20px;
  background: rgba(236,29,37,0.1);
  color: var(--accent-red);
}

.courses-table thead th {
  background: var(--primary-blue) !important;
  color: #fff !important;
  border: none;
}
/* =========================
   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;
  }

  .course-tag {
    display: block;
    margin-top: 5px;
  }
}