/* =========================
   BASE (match your site)
========================= */

/* OLD STYLE
<style>
#main {width:900px; margin-left:auto; margin-right:auto;}
#footer {color:#00496c; font-size:12px; font-family:Arial, Helvetica, sans-serif;}
</style>
*/


body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  margin: 0;
  background: #f7f9fc; /* subtle lift */
  color: #333;
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}


/* =========================
   TYPOGRAPHY IMPROVEMENTS
========================= */

h1 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
}

h2 {
  font-size: 20px;
  margin-bottom: 5px;
}

h3 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #2c5aa0; /* subtle accent */
}

p {
  margin: 10px 0;
}

.intro {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

/* =========================
   VACANCY LIST (clean + light)
========================= */

.vacancy-list {
  margin-bottom: 40px;
}


.vacancy-item {
  padding: 12px 4px;
  border-bottom: 1px solid #eee;
}

.vacancy-item:last-child {
  border-bottom: none;
}

.vacancy-item a {
  display: inline-block;
  margin-top: 5px;
  color: #2c5aa0;
  text-decoration: none;
}

.vacancy-item a:hover {
  text-decoration: underline;
}


/* card like */

.vacancy-list,
.job {
  background: #ffffff;
  border: 1px solid #e6eaf2;
  border-radius: 10px;
  padding: 12px 14px;
}

.vacancy-list {
  margin-bottom: 20px;
}

.job {
  margin-bottom: 20px;
}


/* =========================
   COLLAPSIBLE JOB SECTIONS
========================= */

.job {
  margin-bottom: 20px;
  /* border-top: 1px solid #ddd; */
  /* padding: 15px 0; */
  border-bottom: 1px solid #eee;
}

.job-header {
  padding: 12px 0;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}

/* subtle expand indicator */
.job-header::after {
  content: "+";
  position: absolute;
  right: 0;
  color: #888;
}

.job.active .job-header::after {
  content: "–";
}

.job-content {
  display: none;
  padding: 6px 0 12px 0;
  /* border-top: 1px solid #eee; */
  margin-top: 10px;
}

.job.active .job-content {
  display: block;
}

.job:last-child {
  border-bottom: none;
}

.job-content ul li {
  margin-bottom: 10px;
}

.job-content ul li strong {
  color: #2c5aa0;
}


/* =========================
   LISTS
========================= */

ul {
  margin: 5px 0 10px 20px;
}

li {
  margin-bottom: 5px;
}

/* =========================
   FOOTER
========================= */

.footer {
  text-align: center;
  margin-top: 40px;
  color: #666;
  font-size: 14px;
}

.footer a {
  color: inherit;
}


/* toggle */
.job-toggle {
  margin-top: 8px;
  padding: 6px 10px;
  font-size: 14px;
  color: #2c5aa0;
  background: transparent;
  border: 1px solid #d7e2f3;
  border-radius: 6px;
  cursor: pointer;
}

/* + when closed */
.job-toggle::after {
  content: " +";
  font-weight: bold;
}

/* - when open */
.job-toggle[aria-expanded="true"]::after {
  content: " −";
}

.job-toggle:hover {
  background: #f3f7ff;
}

/* Accessible focus */
.job-toggle:focus-visible {
  outline: 3px solid #2c5aa0;
  outline-offset: 2px;
}

