/* Job Detail Page Styles */

/* Job Details Section */
.job-details-section {
  padding: 60px 20px;
  background-color: #fff;
}

.job-details-container {
  max-width: 900px;
  margin: 0 auto;
}

.job-section {
  margin-bottom: 40px;
}

.job-section-title {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 3px solid #667eea;
  padding-bottom: 10px;
}

.job-section-content {
  color: #555;
  line-height: 1.8;
  font-size: 1.05em;
}

.job-requirements-content {
  padding-left: 20px;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.benefit-item {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #667eea;
}

.benefit-title {
  margin: 0 0 10px 0;
  color: #667eea;
}

.benefit-desc {
  margin: 0;
  color: #666;
}

/* Application Form Section */
.application-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.application-container {
  max-width: 700px;
  margin: 0 auto;
}

.application-title {
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

.application-form {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1em;
}

.form-textarea {
  font-family: Arial, sans-serif;
}

.form-help-text {
  color: #999;
  display: block;
  margin-top: 5px;
}

.privacy-policy-container {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f0f0f0;
  border-radius: 4px;
}

.privacy-policy-label {
  display: flex;
  align-items: start;
  cursor: pointer;
}

.privacy-policy-input {
  margin-right: 10px;
  margin-top: 5px;
  cursor: pointer;
}

.privacy-policy-text {
  color: #666;
}

.submit-button {
  width: 100%;
  background-color: #667eea;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 4px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-button:hover {
  background-color: #764ba2;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 4px;
  display: none;
  text-align: center;
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #fff;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-title {
  font-size: 1.8em;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid #667eea;
}

.contact-card-title {
  color: #667eea;
  margin-bottom: 10px;
}

.contact-card-text {
  margin: 0;
  font-size: 1.1em;
  color: #333;
}

.contact-link {
  text-decoration: none;
  color: #667eea;
}

/* Job Not Found Section */
.job-not-found-section {
  padding: 100px 20px;
  text-align: center;
}

.job-not-found-title {
  color: #d32f2f;
  margin-bottom: 20px;
}

.job-not-found-message {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.back-to-list-button {
  display: inline-block;
  background-color: #667eea;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s;
}

.back-to-list-button:hover {
  background-color: #764ba2;
}

/* Job List Items (Description & Requirements) */
.job-list-item {
  align-items: flex-start;
  margin-bottom: 1rem !important;
}

.job-item-icon {
  font-size: 1.5em;
  margin-right: 16px;
  line-height: 1;
  flex-shrink: 0;
  min-width: 24px;
  text-align: center;
  margin-top: 2px; /* Adjust based on font metrics */
}
