/* Jobs Page Styles */
.mainContent {
  min-height: 100vh;
  background-color: #ffffff;
}

.contentContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin: 60px 0;
  background-color: #ffffff !important;
}

.sectionTitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: #2a2f43;
  text-align: left;
  margin: 0 0 20px 0;
  position: relative;
  max-width: 1200px;
  width: 100%;
  padding: 0;
}

/* Rote Linie wie auf der Startseite */
.leftLineTitle.sectionTitle::before {
  content: '' !important;
  position: absolute !important;
  left: calc(-50vw + 50%) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: calc(50vw - 50% - 20px) !important;
  height: 2px !important;
  background-color: #E30A1D !important;
  z-index: 10 !important;
  display: block !important;
}

.sectionDescription {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.subsectionTitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2a2f43;
  margin-bottom: 20px;
}

.textImageSection {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
}

.textContent {
  flex: 1;
}

.imageContent {
  flex: 1;
  text-align: center;
}

.sectionImage {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .textImageSection {
    flex-direction: column;
    gap: 20px;
  }
  
  .sectionTitle {
    font-size: 2rem;
  }
  
  .contentContainer {
    padding: 0 15px;
  }
}


