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

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

.page {
  max-width: 800px;
  margin: 32px auto;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

/* ── Header ── */
header {
  width: 100%;
}

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

/* ── Main content ── */
main {
  padding: 32px 40px 24px;
}

h1 {
  color: #cc0000;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

h2 {
  color: #cc0000;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.intro-bold {
  font-weight: 700;
  margin-bottom: 4px;
}

.job-title {
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 12px;
}

/* ── Job description bullet list ── */
.job-description {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.job-description li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
  font-weight: 700;
}

.job-description li::before {
  content: "-";
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ── Profile section ── */
.profile {
  margin-bottom: 24px;
}

.section-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.profile-list {
  list-style: none;
  padding-left: 0;
}

.profile-list li {
  padding-left: 20px;
  position: relative;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 0.7em;
  top: 3px;
}

/* ── Contact section ── */
.contact {
  margin-top: 24px;
}

.contact p {
  font-weight: 700;
  margin-bottom: 12px;
}

address {
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}

address a {
  color: #1a1a1a;
  text-decoration: none;
}

address a:hover {
  text-decoration: underline;
}

/* ── Footer / store image ── */
footer {
  width: 100%;
  padding: 16px 40px 32px;
}

.store-image {
  display: block;
  width: 60%;
  margin: 0 auto;
  height: auto;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  main {
    padding: 24px 20px 16px;
  }

  footer {
    padding: 16px 20px 24px;
  }

  .store-image {
    width: 100%;
  }
}
