.job-section {
  padding: 80px 20px;
  background-color: #fff;
}

.job-container {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.job-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.job-image {
  flex: 1 1 45%;
}

.job-text {
  flex: 1 1 45%;
}

.job-subtitle {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.job-highlight {
  background-color: #193442;
  padding: 10px 15px;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 20px;
  color: #001d33;
}

.job-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

.job-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #0d2f4f;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: fit-content;
  text-align: center;
}

.job-button:hover {
  background-color: #1a4b7a;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
