:root {
  --primary-green: #008641;
  --primary-gray: #b1b3b6;
  --primary-orange: #f7941d;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Header & Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.hero-section h1 {
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.btn-apply {
  background-color: var(--primary-orange);
  color: white;
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s;
}

.btn-apply:hover {
  background-color: #e07e0f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(247, 148, 29, 0.3);
}

/* Why Join Us Section */
.why-join-us {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.benefit-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 15px;
}

/* Open Positions */
.job-card {
  border-left: 4px solid var(--primary-green);
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  margin-bottom: 20px;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.job-title {
  color: var(--primary-green);
  font-weight: 600;
}

.job-type {
  background-color: var(--primary-gray);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* Footer */
.footer {
  background-color: var(--primary-green);
  color: white;
  padding: 50px 0 20px;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-orange);
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.2rem;
}
