/* ============================
   HERO
============================ */
.recruit-hero {
  text-align: center;
  padding: 140px 20px 80px;
  background-image: url(../images/contact2.png);
  color: #fff;
}

.recruit-hero h1 {
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.recruit-hero p {
  font-size: 18px;
  opacity: 0.8;
}

/* ============================
   SECTION
============================ */
.recruit-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.recruit-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  border-left: 5px solid #111;
  padding-left: 12px;
}

/* ============================
   JOB CARD
============================ */
.job-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.job-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.job-card ul {
  margin-top: 10px;
  padding-left: 20px;
  line-height: 1.8;
}

/* ============================
   TRAITS
============================ */
.traits {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.trait {
  background: #111;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 15px;
}

/* ============================
   APPLY
============================ */
.mail {
  font-size: 20px;
  margin: 15px 0;
  font-weight: bold;
}

.apply-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #111;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #333;
}

/* ============================
   MOBILE
============================ */
@media (max-width: 768px) {
  .recruit-hero h1 {
    font-size: 32px;
  }

  .traits {
    flex-direction: column;
  }

  .trait {
    text-align: center;
  }
}
