.recruitment-container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}
.recruitment-category h2 {
  padding-bottom: 20px;
  color: #007BFF;
  font-size: 1.8rem;
}
.recruitment-category p {
  padding-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
}
.category {
  list-style-type: none;
  padding-left: 0;
}
.category li {
  padding-bottom: 10px;
  font-size: 1rem;
}
.category span {
  line-height: 1.6;
}
.categorys {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}
.categorys>li::before {
  counter-increment: item;
  content: counter(item) ". ";
  font-weight: bold;
  font-size: 1.2rem;
}
.categorys p {
  margin: 0 0 15px 0;
  font-size: 1rem;
  line-height: 1.6;
}
.recruitment-section {
  margin-top: 20px;
}
.recruitment-section h3 {
  font-size: 1.5rem;
  color: #007BFF;
}
.requirements {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
.requirements li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: bold;
}
.requirements li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007BFF;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .recruitment-category h2 {
    font-size: 1.5rem;
  }
  .recruitment-section h3 {
    font-size: 1.3rem;
  }
  .category li,.category span,.categorys p,.requirements li {
    font-size: 0.95rem;
  }
  .recruitment-container {
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .recruitment-category h2 {
    font-size: 1.3rem;
  }
  .recruitment-section h3 {
    font-size: 1.1rem;
  }
  .category li,.category span,.categorys p,.requirements li {
    font-size: 0.9rem;
  }
  .requirements li {
    padding-left: 28px;
  }
  .requirements li::before {
    font-size: 1rem;
  }
}