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

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

.section {
  margin: 40px 0;
  padding: 0;
}

/* Abwechselnde Hintergründe - Startet mit weiß, dann hellblau */
.section:nth-child(odd) {
  background-color: #f4f9ff;
  padding: 40px 0;
  margin: 40px 0;
  border-radius: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: hidden;
}

.section:nth-child(odd) .contentContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.projectHeader {
  background: linear-gradient(135deg, #E30A1D, #c0091a);
  color: white;
  padding: 30px 40px;
  text-align: center;
}

.projectTitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.projectDate {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  opacity: 0.9;
  font-style: italic;
}

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

.textContent {
  flex: 1;
}

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

.projectImage {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.projectDescription {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.projectDetails {
  margin-top: 30px;
}

.detailItem {
  margin-bottom: 10px;
  padding: 5px 0;
  background: transparent;
  border-radius: 0;
  border-left: none;
}

.detailItem.highlight {
  background: transparent;
  border-left-color: transparent;
}

.detailItem strong {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2a2f43;
  display: block;
  margin-bottom: 5px;
}

.detailItem p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Service Features Section */

.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;
}

.sectionTitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #E30A1D;
  z-index: -1;
}

/* Spezielle Klasse für H2 mit linker Linie */
.leftLineTitle.sectionTitle::before {
  content: '' !important;
  position: absolute !important;
  left: calc(-50vw + 50%) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: calc(50vw - 50% - 40px) !important;
  height: 2px !important;
  background-color: #E30A1D !important;
  z-index: 10 !important;
  display: block !important;
}

.featureDescription {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 30px;
  text-align: left;
}

.featureItem {
  margin-bottom: 20px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border-left: none;
}

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

.featureItem p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Manufacturer Section */
.manufacturerSection {
  background: white;
  margin: 60px 0;
  padding: 40px 0;
}

/* Contact Section */
.contactFormContainer {
  max-width: 600px;
  margin: 0 auto;
}

.formRow {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.formGroup {
  flex: 1;
  margin-bottom: 20px;
}

.halfWidth {
  flex: 1;
}

.formGroup label {
  display: block;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2a2f43;
  margin-bottom: 8px;
}

.formGroup input,
.formGroup textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.formGroup input:focus,
.formGroup textarea:focus {
  outline: none;
  border-color: #E30A1D;
}

.checkboxGroup {
  margin: 20px 0;
}

.checkboxLabel {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  cursor: pointer;
}

.checkboxLabel input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 2px;
}

.checkboxText {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

.privacyGroup {
  margin: 20px 0;
  padding: 20px;
  background: #fff3cd;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
}

.submitButton {
  width: 100%;
  padding: 15px 30px;
  background: #E30A1D;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submitButton:hover {
  background: #c0091a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .textImageSection {
    flex-direction: column;
    gap: 20px;
  }
  
  .formRow {
    flex-direction: column;
    gap: 0;
  }
  
  .sectionTitle {
    font-size: 32px;
  }
  
  .contentContainer {
    padding: 0 20px;
  }
  
  .leftLineTitle.sectionTitle::before {
    width: calc(50vw - 50% - 20px) !important;
  }
}


