.job-detail-container {
    max-width: 800px;
    margin: 120px auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 600px) {
    .job-detail-container {
        padding: 20px;
        margin: 60px auto;
    }
}

.job-title {
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 16px;
    justify-content: center;
    align-items: center;
}

.job-detail-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.job-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  object-fit: cover;
}

.job-detail-section {
  margin-bottom: 40px;
}

.job-detail-section h3 {
  font-size: 40px;
  margin-bottom: 16px;
  border-left: 6px solid #3498db;
  padding-left: 12px;
  color: #2c3e50;
  font-weight: bold;
  text-align: center;
}

.job-detail-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.job-detail-btn.apply {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 24px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.job-detail-btn.apply:hover {
    background-color: #2980b9;
}


.job-detail-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.job-detail-images img {
  width: 200px;
  border-radius: 8px;
}
