/* Hero Section */
.slider {
    background-image: url('../img/slider2.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: #f9f9f9;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .slider::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.2); /* Helles Overlay */
    z-index: 0;
  }
  
  
  .slider .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  /* Linker Textblock */
  .slider .text {
    flex: 1 1 550px;
  }
  
  .slider .text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin-bottom: 25px;
  }
  
  .slider .text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #0c0000;
    margin-bottom: 35px;
  }
  
  .slider .button {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .slider .btn {
    background-color: #1B76D0;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 50;
  }
  
  .slider .btn:hover {
    background-color: #0056b3;
  }
  
  .slider .btn.primary {
    background-color: white;
    color: #007bff;
    border: 2px solid #1B76D0;
    font-weight: 50;
  }
  
  .slider .btn.primary:hover {
    background-color: #f0f0f0;
  }

  .slider {
    padding-top: 10px; /* oder z.B. 30px statt 80px */
  }
  
  
  /* Rechter Bereich: Bild mit Siegeln */
  .slider .right-content {
    flex: 1 1 500px;
    display: flex;
    margin-left: -20px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 25px;
    position: relative;
  }
  
  .right-content img.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .siegel-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }
  
  .siegel {
    height: 250px;
    object-fit: contain;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .slider {
      padding: 60px 20px;
      text-align: center;
    }
  
    .slider .container {
      flex-direction: column;
      align-items: center;
    }
  
    .slider .text,
    .slider .right-content {
      flex: 1 1 100%;
      align-items: center;
    }
  
    .slider .button {
      justify-content: center;
    }
  
    .siegel-container {
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 20px;
    }
  
    .siegel {
      height: 140px;
    }
  
    .right-content img.hero-image {
      margin-top: 30px;
      width: 100%;
    }
  }
  
  /* Transcription Services Area */

  /* Container-Layout */
.schedule {
    background: #f8f9fc;
    padding: 60px 0;
  }
  
  .schedule-inner .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  
  /* Jede Box gleich breit – maximal drei nebeneinander */
  .schedule .col-lg-4 {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    display: flex;
  }
  
  /* Box-Styling */
  .single-schedule {
    background-color: #1976d2;
    color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
  }
  
  /* Icon oben rechts */
  .single-schedule .icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.2);
  }
  
  /* Text */
  .single-content span {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
  }
  
  .single-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
  }
  
  .single-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #e3f2fd;
    flex-grow: 1;
  }
  
  .single-content a {
    margin-top: 20px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: inline-block;
  }
  
  .single-content a i {
    margin-left: 6px;
  }
  
  /* Farbliche Differenzierung */
  .middle {
    background-color: #0d47a1;
  }
  
  .last {
    background-color: #1565c0;
  }
  
  /* Hover-Effekt */
  .single-schedule:hover {
    transform: translateY(-5px);
  }
  
  /* Responsiv: untereinander ab 992px abwärts */
  @media (max-width: 991px) {
    .schedule .col-lg-4 {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .single-schedule .icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
    z-index: 0;
  }
  
  /* Falls Content überlappt: bring Inhalt darüber */
  .single-schedule .single-content {
    position: relative;
    z-index: 1;
  }

  .single-schedule.first {
    border: 3px solid #ffc107; /* schönes, kräftiges Gelb */
  }

  /* Features Section */

  .features-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1d3b73;
  margin-bottom: 10px;
}

.section-title .section-icon {
  font-size: 24px;
  color: #4068dd;
  margin: 15px 0;
  display: inline-block;
}

.section-title p {
  color: #5f5f5f;
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Step-Container als Flexbox */
.features-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Einzelner Step */
.step {
  flex: 1;
  padding: 0 10px;
}

/* Icon in Kreis */
.step-icon-wrapper {
  margin-bottom: 15px;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #4068dd;
  margin: 0 auto;
}

/* Text */
.step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1d1d1d;
}

.step p {
  font-size: 14px;
  color: #6c6c6c;
  margin: 0 auto;
  max-width: 250px;
}

/* Trennlinie */
.step-separator {
  width: 30px;
  height: 3px;
  border-top: 3px dotted #4068dd;
  align-self: center;
}

/* Mobile: untereinander anordnen */
@media (max-width: 991px) {
  .features-steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 100%;
    margin-bottom: 30px;
  }

  .step-separator {
    display: none;
  }
}

/* Fun Facts */
  
.fun-facts {
    position: relative;
    background: url('../img/fun-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    z-index: 1;
    min-height: 320px;
    display: flex;
    align-items: center;
  }
  
  .fun-facts.overlay::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(48, 103, 166, 0.9);
    z-index: 0;
  }
  
  .fun-facts .container {
    position: relative;
    z-index: 1;
  }
  
  .fun-facts .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  /* Einzelne Box */
  .single-fun {
    flex: 1 1 22%;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
  }
  
  /* Icon */
  .single-fun i {
    font-size: 45px;
    color: white;
    flex-shrink: 0;
  }
  
  /* Text */
  .single-fun .content span {
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
  }
  
  .single-fun .content p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
  }
  
  /* Mobile: untereinander + zentriert */
  @media (max-width: 991px) {
    .fun-facts .row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .single-fun {
      flex: 1 1 100%;
      flex-direction: column;
      justify-content: center;
    }
  
    .single-fun i {
      font-size: 36px;
      margin-bottom: 10px;
    }
  
    .single-fun .content span {
      font-size: 22px;
    }
  
    .single-fun .content p {
      font-size: 14px;
    }
  }
  
  
  .why-choose {
    padding: 80px 0;
    background: #f9fbfd;
    text-align: center;
  }
  
  .why-choose h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1d3b73;
    margin-bottom: 15px;
  }
  
  .why-choose p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Container für alle Vorteile */
  .benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0 auto;
  }
  
  /* Einzelne Box */
  .benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }
  
  .benefit-card i {
    font-size: 26px;
    color: #4068dd;
    margin-bottom: 12px;
    display: block;
  }
  
  .benefit-card p {
    font-weight: 700;
    color: #1d1d1d;
    font-size: 16px;
    margin: 0;
  }
  
  /* Abschnitt */
.call-action-section {
    background: url('../img/call-bg.jpg') center 30% no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
  }
  
  /* Overlay */
  .call-action-overlay {
    background-color: rgba(40, 102, 192, 0.9); /* halbtransparentes Blau */
    padding: 100px 20px;
    color: #fff;
  }
  
  /* Text */
  .call-action-overlay h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .call-action-overlay p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e4e4e4;
  }
  
  /* Button */
  .btn.btn-white {
    background: #fff;
    color: #2a4dad;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
  }
  
  .btn.btn-white:hover {
    background: #f0f0f0;
    color: #1e3a8a;
  }
  
  /* Responsiv */
  @media (max-width: 768px) {
    .call-action-overlay h2 {
      font-size: 24px;
    }
  
    .call-action-overlay p {
      font-size: 16px;
    }
  }
  
  

  /* Section Container */
.pricing-table.section {
    background: #f9fbfd;
    padding: 80px 0;
  }
  
  /* Überschrift & Intro */
  .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1d3b73;
    margin-bottom: 10px;
  }
  
  .section-title p {
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .section-title .section-icon i {
    font-size: 48px;
    color: #1B76D0;
    margin: 20px 0;
  }
  
  /* Preisboxen */
  .single-table {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    padding: 30px 25px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .single-table:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  }
  
  /* Kopfbereich mit Icon */
  .table-head .icon i {
    font-size: 36px;
    color: #1b76d0;
    margin-bottom: 15px;
  }
  
  .table-head .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .price .amount {
    font-size: 26px;
    font-weight: 700;
    color: #1b76d0;
    margin-bottom: 0;
  }
  
  .price span {
    font-size: 14px;
    color: #555;
    margin-left: 5px;
  }
  
  .delivery-time {
    font-size: 14px;
    color: #1b76d0;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
  }
  
  /* Merkmalliste */
  .table-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 20px;
  }
  
  .table-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
  }
  
  .table-list i {
    color: #1b76d0;
    margin-right: 10px;
    font-size: 16px;
  }
  
  /* Button */
  .table-bottom .btn {
    background: #1b76d0;
    color: #fff;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: 0.3s ease;
  }
  
  .table-bottom .btn:hover {
    background: #155fb2;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .section-title h2 {
      font-size: 24px;
    }
  
    .single-table {
      margin-bottom: 40px;
    }
  }

  .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
  }
  
  .single-table {
    flex: 1 1 300px;
    max-width: 350px;
    min-height: 520px;
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
  }
  
  /* Übergeordnetes Icon oben */
  .main-icon {
    font-size: 40px;
    color: #1B76D0;
    margin-bottom: 15px;
  }
  
  .table-head .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .price .amount {
    font-size: 28px;
    font-weight: 700;
    color: #1B76D0;
  }
  
  .price .amount span {
    font-size: 14px;
    color: #555;
    margin-left: 5px;
  }
  
  .delivery-time {
    margin-top: 10px;
    font-weight: bold;
    color: #1B76D0;
    font-size: 14px;
  }
  
  /* Liste */
  .table-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
  }
  
  .table-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
  }
  
  .table-list li::before {
    content: "\f105"; /* Font Awesome angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #1B76D0;
  }
  
  /* Button */
  .table-bottom {
    margin-top: auto;
  }
  
  .table-bottom .btn {
    background: #1B76D0;
    color: #fff;
    font-weight: 600;
    display: block;
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
    transition: 0.3s;
  }
  
  .table-bottom .btn:hover {
    background: #145ca7;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .pricing-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .single-table {
      width: 100%;
      max-width: 100%;
    }
  }

  .clients-section {
    position: relative;
    width: 100%;
    background: url('../img/client-bg.jpg') center center no-repeat;
    background-size: cover;
  }
  
  .clients-overlay {
    background: rgba(27, 118, 208, 0.6); /* Blau mit Transparenz */
    padding: 150px 0; /* Erhöht die Höhe der Section */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px; /* mehr Abstand zwischen den Logos */
  }
  
  .single-client {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px;
    height: 120px; /* größere Boxhöhe */
  }
  
  .single-client img {
    max-height: 180px; /* größere Logos */
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    transition: transform 0.3s ease;
  }
  
  .single-client img:hover {
    transform: scale(1.05);
  }
  
  .section-title {
    text-align: center;
    margin-top: 60px; /* Abstand nach oben */
    margin-bottom: 40px; /* Optional: Abstand nach unten */
  }

  
  