:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000;
  --bg-light: #f4f6f9;
}



/* TITLE */
.career-title {
  font-weight: 700;
}

.title-line {
  width: 80px;
  height: 3px;
  background: var(--accent-red);
  margin: 10px auto;
}

/* CONTENT BOX */
.content-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  line-height: 1.7;
  border: 1px solid #eee;
}

/* SECTION TITLE */
.section-title {
  color: var(--primary-blue);
  border-left: 4px solid var(--accent-red);
  padding-left: 10px;
  margin-bottom: 10px;
}

/* RIGHT PANEL */
.highlight-panel {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid var(--accent-red);
  position: sticky;
  top: 20px;
}