/* Join Our Team Section */
.careers-section {
  background-color: #fff;
  padding: 4rem 2rem;
  font-family: 'Inter', sans-serif;
}

.careers-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.careers-text {
  flex: 1 1 400px;
}

.careers-text h2 {
  font-size: 2rem;
  color: #1f3b2c;
  margin-bottom: 1rem;
}

.careers-text .subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
}

.careers-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.5rem;
}

.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #00794f;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #005f3a;
}

.btn-outline {
  border: 2px solid #00794f;
  background: transparent;
  color: #00794f;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background-color: #00794f;
  color: white;
}

.careers-images {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.careers-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

