

/* ======== MAIN CONTENT ========================================================= */

.beginn-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 120vh;
    background-color: white;
    padding: 40px 15px 50px;
    box-sizing: border-box;
  
  }
  
  .left-panel {
    flex: 1;
    padding: 25px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .left-panel h3 {
    color: #0093D2;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 75px;
  }
  
  .left-panel h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 80px; /* riesige Spalte */
  }
  
  .left-panel p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    
    max-width: 600px;
    margin-bottom: 0;
    margin-top: auto;
  }
  
  .right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
  }
  
  
  .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 1500px) { .image-container { max-width:1000px } }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .overlay-number {
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
  }
  
  .overlay-number .number {
    font-size: 200px;
    font-weight: 900;
    color: white;
    opacity: 0.4;
    mix-blend-mode: overlay;
    line-height: 1;
    white-space: nowrap;
  }
  
  .overlay-number .label {
    display: block;
    margin-top: -36px;
    font-size: 24px;
    color: #fff;
    text-shadow: 0 0 5px rgba(0,0,0,0.2);
    font-weight: 600;
  }
  
  
  @media (max-width: 1024px) {
    .left-panel {
      padding: 15px;
    }  
    .right-panel {
      padding: 15px;
    }
    .overlay-number .number {
      font-size: 175px;
    }
    .overlay-number .label {
      margin-top: -30px;
      font-size: 20px;
    }
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .beginn-section {
      flex-direction: column;
    }
  
    .left-panel {
      padding: 0;
      text-align: center;
    }
    .right-panel {
      padding: 0;
    }
    .left-panel p {
     margin: auto;
     margin-bottom: 15px;
    }
    .right-panel img {
      max-height: 600px;
    }
    .overlay-number .number {
      font-size: 150px;
    }
    .overlay-number .label {
      margin-top: -24px;
      font-size: 16px;
    }
  }
  
  @media (max-width: 500px){
      .overlay-number .number {
      font-size: 100px;
    }
    .overlay-number .label {
      margin-top: -18px;
  
    }
  }
  
  
  
  
  
  
  
  
  
  /* ==================== Warum Martin networks ============================= */
  .usp-list-section {
    padding: 40px 15px;
    background-color: #f5faff;
  }
  
  .usp-list-card {
    width: 100%;
    min-height: 220px;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
    overflow: hidden;
  }
  
  .usp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* dunkler Layer für Lesbarkeit */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    color: white;
  }
  
  .usp-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .usp-overlay p {
    font-size: 16px;
    max-width: 900px;
  }
  .usp-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  
  .usp-link .usp-list-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .usp-link:hover .usp-list-card {
    transform: translateY(-5px); /* leicht nach oben */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  #hwb-gl-inline{
    display: flex;
    flex-direction: row; /* nebeneinander statt untereinander */
    justify-content: space-between; /* Abstand zwischen Text und Button */
    align-items: center; /* vertikal ausrichten */
    flex-wrap: wrap;
  }
  
  
  @media (max-width: 1024px) {
      #hwb-gl-inline {
  
      align-items: flex-start;
      }
  
      #gl-cta {
          width: 100%;
          box-sizing: border-box;
      }
  }
  
  
  @media (max-width: 768px) {
    .usp-overlay {
      padding: 20px;
    }
  
    .usp-overlay h3 {
      font-size: 20px;
    }
  
    .usp-overlay p {
      font-size: 14px;
    }
  }
  