/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f5f7fa;
  color: #1d2736;
  line-height: 1.6;
}

/* HERO */
.careers-hero {
  background: linear-gradient(135deg, #9b267c, #5a1d4d);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: auto;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.95;
}

/* SECTION */
.careers-section {
  padding: 70px 20px;
  max-width: 1200px;
  margin: auto;
}

.careers-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

/* JOBS GRID */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* JOB CARD */
.job-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  position: relative;
}

.job-card:hover {
  transform: translateY(-6px);
}

.job-icon {
  width: 60px;
  height: 60px;
  background: #f3e5ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b267c;
  font-size: 26px;
  margin-bottom: 20px;
}

.job-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.job-card p {
  font-size: 15px;
  color: #4f5d75;
  margin-bottom: 15px;
}

.job-location {
  font-size: 14px;
  color: #7b8794;
}

/* APPLY */
.apply-section {
  background: white;
  padding: 70px 20px;
}

.apply-section h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}

.apply-box {
  max-width: 700px;
  margin: auto;
  background: #f9eff6;
  border-radius: 18px;
  padding: 40px;
  text-align: center;
}

.email-link {
  display: inline-block;
  margin: 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: #9b267c;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.apply-note {
  margin-top: 10px;
  font-size: 15px;
}

.examples {
  margin-top: 25px;
  text-align: left;
}

.examples span {
  font-weight: 600;
}

.examples ul {
  margin-top: 8px;
  padding-left: 20px;
}