.career__hero {
  padding-top: 12rem;
  padding-bottom: 7rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.career__hero-content__title {
  font-size: 4rem;
}

.career__hero-content-desc {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.5;
  color: #fff;
}

/* Filter Section */
.filter-section {
  padding: 20px 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.filter-container {
  padding: 15px;
}

.filter-btn {
  background-color: #f8d231;
  color: #333;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  font-size: 2rem;
}

.filter-btn:hover {
  background-color: #f0c61a;
}

.form-control {
  font-size: 2rem;
}

.form-select {
  font-size: 2rem;
}

/* Jobs Section */
.career-section {
  padding: 40px 0;
}

.career-card {
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(252, 251, 195, 1);
}

.career-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.career-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(55, 64, 77, 1);
  margin: 0;
}

.career-badge {
  background-color: rgba(252, 251, 195, 1);
  color: rgba(55, 64, 77, 1);
  font-size: 1.4rem;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.career-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.career-detail {
  display: flex;
  align-items: center;
  color: #555;
}

.career-detail__time {
  color: black;
  font-weight: bold;
}

.career-detail i {
  margin-right: 5px;
  color: rgba(55, 64, 77, 1);
}

.apply-btn {
  background-color: rgba(252, 251, 195, 1);
  color: #333;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.4rem;
}

.apply-btn:hover {
  background-color: #f0c61a;
}

/* Pagination */
.pagination-section {
  padding: 20px 0 40px;
}

.pagination .page-link {
  color: #333;
  border-color: #333;
  background-color: #fff;
  border-radius: 50px !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 40px;
  font-size: 1.4rem;
}

.pagination .page-item {
  padding: 0px 1rem;
}

.pagination .page-item.active .page-link {
  background-color: #f8d231;
  border-color: #f8d231;
  color: #fff;
  border-radius: 50px !important;
}

.pagination .page-link:hover {
  background-color: #f0c61a;
}

#prev-page,
#next-page {
  border-radius: 50px !important;
  background-color: #fff;
  color: black;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .career-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .career-badge {
    margin-top: 10px;
  }

  .career-details {
    flex-direction: column;
    gap: 10px;
  }

  .apply-btn {
    width: 100%;
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .filter-container {
    padding: 10px;
  }

  .career-card {
    padding: 15px;
  }
}
