.card-container {
  display: flex;
  gap: 20px; /* Space between cards */
  flex-wrap: wrap; /* Allow cards to wrap to the next line on smaller screens */
  justify-content: center;
  padding: 20px;
}

.career-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 350px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-header {
  background-color: #007bff;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

.card-header h2 {
  margin: 0;
  font-size: 24px;
}

.card-header .subtitle {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: normal;
}

.card-body {
  padding: 20px;
  color: #333333;
  flex-grow: 1;
}

.card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #007bff;
}

.card-body ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.card-body ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.card-footer {
  background-color: #f8f9fa;
  padding: 15px;
  text-align: center;
  border-top: 1px solid #e9ecef;
}

.card-footer p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #555555;
}
