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

body {
  background: #FBF1E3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.65;
}

#wrapper {
  width: 100%;
  max-width: 100%;
  background: #FBF1E3;
  overflow: hidden;
}

/* ─── Banner ─── */
.banner {
  display: block;
  line-height: 0;
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* ─── Content ─── */
.content {
  padding: 36px 12% 40px;
}

/* ─── Intro + title block ─── */
.intro-label {
  text-align: center;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.job-title {
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  color: #BE004C;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.location {
  text-align: center;
  font-size: 14px;
  margin-bottom: 36px;
  color: #1a1a1a;
}

.location strong {
  font-weight: 700;
}

/* ─── Sections ─── */
.section {
  margin-bottom: 32px;
}

.section-heading {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: #BE004C;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.section p {
  margin-bottom: 12px;
}

/* ─── Checkmark list ─── */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 9px;
}

.check-list li::before {
  content: '☑';
  position: absolute;
  left: 0;
  color: #BE004C;
  font-size: 15px;
  line-height: 1.65;
}

.check-list li strong {
  font-weight: 700;
}

/* ─── CTA block ─── */
.cta-block {
  margin-top: 20px;
}

.cta-block p {
  margin-bottom: 12px;
}

.cta-link {
  color: #BE004C;
  font-weight: 700;
  text-decoration: underline;
}

.cta-link:hover {
  opacity: 0.8;
}

/* ─── Contact columns ─── */
.contact-row {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.contact-col {
  flex: 1;
  min-width: 180px;
}

.contact-col p {
  margin-bottom: 4px;
  font-size: 14px;
}

/* ─── Footer ─── */
.footer-img {
  display: block;
  line-height: 0;
  margin-top: 4px;
}

.footer-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* ─── Responsive ─── */
@media (max-width: 700px) {
  .content {
    padding: 24px 5% 28px;
  }

  .job-title {
    font-size: 24px;
  }

  .contact-row {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .job-title {
    font-size: 20px;
  }

  .section-heading {
    font-size: 15px;
  }
}
