/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.career-hero {
  background: linear-gradient(135deg, #960096, #5e0080);
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.career-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.career-hero p {
  font-size: 1.1rem;
}

/* Job Listings */
.job-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.job-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.job-card h2 {
  font-size: 1.3rem;
  color: #960096;
  margin-bottom: 10px;
}

.job-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* Apply Button */
.apply-btn {
  background: #960096;
  color: white;
  border: none;
  padding: 10px 18px;
  font-size: 0.95rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.apply-btn:hover {
  background: #5e0080;
}

/* Responsive Text */
@media (max-width: 768px) {
  .career-hero h1 {
    color: #f9f9f9;
    font-size: 2rem;
  }
  .career-hero p {
    font-size: 1rem;
  }
}
