.career-apply-section {
  max-width: 100%;
  padding: 80px 5%;
  font-family: "Poppins", sans-serif;
  color: #111;
  background-color: #ffffff;
}

.job-title h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.job-title span {
  font-size: 18px;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-tags span {
  background: #e6e6e6;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 14px;
}

.job-description {
  margin-top: 15px;
  line-height: 1.5;
}

.job-description ul {
  margin-top: 5px;
  padding-left: 20px;
}

.career-form {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 20px;
  margin-top: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
  min-width: 200px;
}

.form-group.full-width {
  flex: 100%;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #333;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  height: 60px;
  resize: none;
}

.checkbox-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.submit-btn {
  background: #111;
  color: #fff;
  padding: 8px 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.submit-btn:hover {
  background: #333;
}
