* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO */
.page-hero {
  background: linear-gradient(135deg, #111, #1d1d1d);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.hero-label {
  display: inline-block;
  color: #d4a24c;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: 46px;
  margin-bottom: 18px;
  line-height: 1.2;
}

.page-hero p {
  max-width: 760px;
  margin: auto;
  color: #ddd;
  font-size: 17px;
}

/* COMMON */
.career-intro-section,
.positions-section,
.process-section,
.career-cta-section {
  padding: 80px 0;
}

.career-intro-section,
.process-section {
  background: #f8f8f8;
}

.positions-section {
  background: #fff;
}

.career-cta-section {
  background: #d4a24c;
  text-align: center;
  color: #fff;
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-heading h2 {
  font-size: 36px;
  margin-bottom: 14px;
  color: #111;
}

.section-heading p {
  font-size: 16px;
  color: #666;
}

/* BENEFITS */
.career-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #efefef;
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #666;
  font-size: 15px;
}

/* POSITIONS */
.positions-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.job-card {
  background: #f8f8f8;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.job-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.job-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.job-type {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #d4a24c;
  background: rgba(212, 162, 76, 0.12);
  padding: 6px 12px;
  border-radius: 30px;
}

.job-card p {
  color: #666;
  font-size: 15px;
}

.apply-btn {
  text-decoration: none;
  background: #111;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
}

.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #efefef;
  text-align: left;
}

.process-number {
  font-size: 36px;
  font-weight: 700;
  color: rgba(212, 162, 76, 0.22);
  margin-bottom: 10px;
}

.process-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 15px;
  color: #666;
}

/* CTA */
.career-cta-box {
  max-width: 850px;
  margin: auto;
}

.cta-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.career-cta-box h2 {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.career-cta-box p {
  font-size: 16px;
  margin-bottom: 28px;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: #111;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .career-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 70px 20px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .section-heading h2,
  .career-cta-box h2 {
    font-size: 28px;
  }

  .section-heading p,
  .career-cta-box p {
    font-size: 15px;
  }

  .career-intro-section,
  .positions-section,
  .process-section,
  .career-cta-section {
    padding: 60px 0;
  }

  .career-benefits-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .job-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 28px;
  }

  .hero-label {
    font-size: 12px;
  }

  .benefit-card h3,
  .process-card h3 {
    font-size: 20px;
  }

  .job-card h3 {
    font-size: 22px;
  }
}
