* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #2b2b2b;
  line-height: 1.65;
}

#wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 50px;
  background: #fff;
}

/* ─── Page header: logo left, QR right ─── */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 0 20px;
}

.logo {
  height: 70px;
  width: auto;
}

.qr {
  height: 68px;
  width: auto;
}

/* ─── Job title block ─── */
.job-title-block {
  padding: 28px 0 24px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  color: #42945d;
  margin-bottom: 18px;
  line-height: 1.2;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 8px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2b2b2b;
}

.meta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #42945d;
}

/* ─── Content sections ─── */
.section {
  margin-bottom: 26px;
}

h2 {
  font-size: 18px;
  font-weight: 400;
  color: #2b2b2b;
  margin-bottom: 14px;
}

p {
  margin-bottom: 10px;
}

/* ─── Bullet lists ─── */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}

ul li::before {
  content: '•';
  position: absolute;
  left: 2px;
  top: 0;
  color: #2b2b2b;
  font-size: 14px;
  line-height: 1.65;
}

/* ─── Closing text ─── */
.closing {
  margin-top: 8px;
}

/* ─── Footer ─── */
.page-footer {
  padding: 16px 0 20px;
  margin-top: 24px;
}

.page-footer a {
  font-size: 12px;
  color: #555;
  text-decoration: none;
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
  #wrapper {
    padding: 0 20px;
  }

  h1 {
    font-size: 22px;
  }

  .meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
