/* Audit Page Styles */
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.audit-header {
  background: #072750;
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.audit-header h2 {
  margin: 0;
  color: #333;
  font-size: 1.8rem;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.orange-button {
  background-color: orange;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none; /* für <a> */
}

.orange-button:hover {
  background-color: darkorange;
}
.image-placeholder video {
  width: auto; /* Statt 100% */
  height: 100%;
  max-width: 100%; /* Verhindert Überlauf */
  object-fit: contain; /* Statt cover - zeigt das ganze Video */
  border-radius: 8px;
  margin: 0 auto; /* Zentriert das Video horizontal */
  display: block; /* Für bessere Zentrierung */
}

.audit-hero {
  background: #072750;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.audit-hero h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: white;
}

.audit-intro {
  max-width: 800px;
  margin: 0 auto;
}

.audit-intro p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.benefit-icon {
  font-size: 1.5rem;
}

.audit-form-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.audit-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-section {
  margin-bottom: 50px;
}

.form-section h3 {
  color: #072750;
  margin-bottom: 20px;
  font-size: 1.8rem;
  border-bottom: 2px solid #ff9800;
  padding-bottom: 10px;
}

.section-intro {
  color: #666;
  font-style: italic;
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff9800;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.checkbox-group {
  margin: 40px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: #ff9800;
}

.checkbox-label a {
  color: #ff9800;
  text-decoration: underline;
}

.audit-form .cta-button {
  width: 100%;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  background: #ff9800;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .audit-hero h1 {
    font-size: 2.2rem;
  }

  .audit-benefits {
    flex-direction: column;
    gap: 20px;
  }

  .audit-form {
    padding: 30px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-section h3 {
    font-size: 1.5rem;
  }
}

.footer {
  background: #072750;
  color: white;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #63a2cd;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff9800;
}
.footer-copyright {
  opacity: 0.8;
}

.success-container {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #072750 0%, #63a2cd 100%);
  color: white;
  text-align: center;
  padding: 20px 20px;
}

.success-container h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.success-container p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  opacity: 0.95;
}

.success-container .cta-button {
  background: white;
  color: #072750;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: inline-block;
}

.success-container .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
}

/* Optionale Erweiterung mit Video-Bereich */
.success-video-section {
  background: white;
  padding: 30px 20px;
  color: #333;
  text-align: center;
}

.success-video-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #072750;
}

.success-video-section .video-intro {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666;
}

.video-container {
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  height: auto;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

/* Zusätzliche Elemente für mehr Dynamik */
.success-checkmark {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 20px;
  animation: checkmark-bounce 0.6s ease-in-out;
}

@keyframes checkmark-bounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.next-steps {
  background: #f8f9fa;
  padding: 50px 20px;
  text-align: center;
}

.next-steps h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #072750;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px #072750;
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
}

.step-number {
  background: orange;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 15px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #072750;
  margin-bottom: 10px;
}

.step-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
}

.step-title a {
  color: #072750;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.step-title a:hover {
  color: #ff9800;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .success-container h1 {
    font-size: 2.2rem;
  }

  .success-container p {
    font-size: 1.1rem;
  }

  .success-video-section h2 {
    font-size: 1.8rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.blog {
  background: #eae8e5;
  color: #072750;
  width: 100%;
  max-width: none;
  padding-top: 30px;
  padding-bottom: 30px;
}
