* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #f4f4f4;
}

.page {
  max-width: 900px;
  margin: 24px auto;
  background: #fff;
  padding: 40px 48px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.header {
  text-align: center;
  border-bottom: 2px solid #111;
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.header h1 {
  margin: 0 0 8px;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
}

.header p {
  margin: 4px 0;
  font-size: 0.98rem;
}

.download-link {
  margin-top: 10px;
}

.download-link a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #111;
  color: #111;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.download-link a:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.download-link a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.download-link a:hover::after {
  transform: translateX(120%);
}

section {
  margin-bottom: 24px;
}

h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
  border-bottom: 1px solid #bbb;
  padding-bottom: 6px;
}

h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

p, li {
  font-size: 0.96rem;
  line-height: 1.65;
}

section p:first-of-type {
  text-align: justify;
}

.group {
  margin-bottom: 10px;
}

.group p {
  margin: 0;
}

.job {
  margin-bottom: 16px;
}

.job-divider {
  border: 0;
  border-top: 1px solid #c8c8c8;
  margin: 18px 0 18px;
}

.job-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.job-head strong {
  font-size: 1rem;
}

.job-head span {
  font-size: 0.92rem;
}

.job ul {
  margin: 0;
  padding-left: 18px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.two-col ul {
  margin: 0;
  padding-left: 18px;
}

.contact-mini {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  max-width: 100%;
}

.contact-mini input,
.contact-mini textarea {
  width: 100%;
  border: 1px solid #bbb;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
  color: #111;
}

.contact-mini button {
  border: 1px solid #111;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  font: inherit;
  cursor: pointer;
  width: 100%;
}

.form-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1000;
  min-width: 280px;
  max-width: calc(100vw - 36px);
  padding: 14px 18px;
  border: 1px solid #66b98a;
  background: linear-gradient(180deg, #edfdf3, #dff7e8);
  color: #145c35;
  box-shadow: 0 10px 24px rgba(20, 92, 53, 0.16);
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.45;
  opacity: 0;
  transform: translate(-50%, -45%) scale(0.98);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.form-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.form-toast.sending {
  border-color: #d0a61f;
  background: linear-gradient(180deg, #fff7cc, #ffef9f);
  color: #7a5b00;
  box-shadow: 0 10px 24px rgba(122, 91, 0, 0.16);
}

.form-toast.success {
  border-color: #66b98a;
  background: linear-gradient(180deg, #edfdf3, #dff7e8);
  color: #145c35;
  box-shadow: 0 10px 24px rgba(20, 92, 53, 0.16);
}

@media (max-width: 720px) {
  .page {
    padding: 24px 18px;
    margin: 0;
    box-shadow: none;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .job-head {
    flex-direction: column;
    gap: 4px;
  }
}
