.terms-page {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
}

/* CONTAINER */
.terms-page .container {
  display: flex;
  justify-content: center;
  padding: 40px 16px;
}

/* CARD */
.terms-page .card {
  background: #f3f8fc;
  max-width: 900px;
  width: 100%;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.terms-page .title {
  text-align: center;
  color: #0e8fb0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.terms-page .program-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
/* PROGRAM CARD */
.terms-page .program-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 20px;
  border: 1px solid #e3eef5;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.terms-page .program-card .program-card-row {
  display: flex;
  flex-direction: row;
  gap: 90px;
}

.terms-page .program-card .horizontal-line {
  border-top: 1px solid #e3eef5;
  margin: 8px 0;
}

.contact-info {
  text-align: center;
  font-weight: 600;
}

.contact-info span {
  color: #0e8fb0;
}

/* Hover effect */
.terms-page .program-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* TITLE */
.terms-page .program-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

/* DETAILS ROW */
.terms-page .program-card p {
  font-size: 14px;
  color: #555;
  margin: 4px 0;
}

/* LABEL STYLE */
.terms-page .program-card p strong {
  color: #333;
  font-weight: 500;
}

/* ENROLL BUTTON */
.terms-page .program-card a {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #0e8fb0;
  text-decoration: none;
  transition: 0.2s;
}

/* Hover button */
.terms-page .program-card a:hover {
  text-decoration: none;
  color: #0b6f89;
}

.terms-page .program-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.terms-page .program-card .enroll-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
