/* Contact CTA Styles */
.contactCTA {
  background-color: #ffffff;
  padding: 60px 0;
  margin: 60px 0 0 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: hidden;
}

.ctaContent {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

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

/* Rote Linie wie auf der Startseite - angepasst f?r 40px Padding */
.leftLineTitle.ctaTitle::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;
}

.ctaDescription {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ctaButtons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.primaryButton {
  display: inline-block;
  padding: 15px 30px;
  background-color: #E30A1D;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.primaryButton:hover {
  background-color: #c0091a;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.secondaryButton {
  display: inline-block;
  padding: 15px 30px;
  background-color: transparent;
  color: #E30A1D;
  text-decoration: none;
  border: 2px solid #E30A1D;
  border-radius: 8px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease, transform 0.2s ease;
}

.secondaryButton:hover {
  background-color: #E30A1D;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contactInfo {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.contactItem {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.contactItem svg {
  color: #E30A1D;
  flex-shrink: 0;
}

.contactItem span {
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contactCTA {
    padding: 40px 0;
    margin: 40px 0;
  }
  
  .ctaContent {
    padding: 0 15px;
  }
  
  .leftLineTitle.ctaTitle::before {
    width: calc(50vw - 50% - 15px) !important;
  }
  
  .ctaTitle {
    font-size: 2rem;
  }
  
  .ctaDescription {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .ctaButtons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .primaryButton,
  .secondaryButton {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .contactInfo {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
