    /* WF Preloader */
    #wf-preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      height: 100dvh;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.2s ease;
    }

   .wf-loader {
      width: 30px;
      height: 30px;
      border: 2px solid rgba(129,152,146, 0.05);
      border-top: 2px solid rgba(129,152,146, 0.15);
      border-radius: 50%;
      animation: wf-spin 1s linear infinite;
    }


    @keyframes wf-spin {
      to { transform: rotate(360deg); }
    }

    /* WF Content */
    #wf-content-preloader {
      opacity: 0;
      transition: opacity 1s ease;
    }

    #wf-content-preloader.wf-visible {
      opacity: 1;
    }
    
    .top-30 {
        scroll-margin-top: 30px; /* sorgt dafür, dass scrollIntoView 30px Abstand oben lässt */
    }