
.content {
    flex: 1; /* nimmt den restlichen Platz ein */
    font-family: 'Inter', sans-serif;
  }
  
  .footer {
    position: absolute;
    bottom: 0vh; /* <- das brauchst du */
    background: #646161;
    color: white;
    padding: 3rem 1.5rem 2rem;;
    font-family: 'Inter', sans-serif;
    width: 95vw;
    height: auto;
    bottom: -54vh;
    display: none;

          /* Nur bestimmte Seiten mit Border */
          border-top: 0.3vw rgb(228, 85, 41) solid;
          border-left: 0.3vw rgb(228, 85, 41) solid;
          border-right: 0.3vw rgb(228, 85, 41) solid;
          border-bottom: 0.3vw rgb(228, 85, 41) solid;
      
          /* Glow-Effekt */
          box-shadow:
              0 0 10px rgba(228, 85, 41, 0.6),
              0 0 20px rgba(228, 85, 41, 0.5),
              0 0 40px rgba(228, 85, 41, 0.3);
      
          transition: box-shadow 0.3s ease;
      }
  
  .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 94vw;
      margin-top: -5vh;
      height: auto;
      background-color: transparent;
      font-family: 'Inter', sans-serif;
  }
  
  .abschluss {
    position: relative; /* Entferne absolute Positionierung */
    z-index: 10000;     /* Sicherstellen, dass sie oben bleibt */
    margin-top: 2rem;   /* Abstand zum oberen Bereich */
    color: white;
    text-align: center;
    width: 100%;        /* Stellt sicher, dass die Zeile voll sichtbar ist */
    font-family: 'Inter', sans-serif;
}

.abschluss::before {
    content: "";
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translateX(-50%); /* zentriert die Linie */
    width: 50%; /* Linie ist 3x so breit wie der Text */
    height: 2px;
    background-color: white;
}

.footer-social{
    transform: translateX(-80%); /* zieht ihn ein Stück nach links */
    font-family: 'Inter', sans-serif;
}

          .footer-logo h3 {
              font-size: 1.5rem;
              margin-bottom: 0.5rem;
              color: rgb(246, 119, 24);
           text-decoration: underline;
           font-family: 'Inter', sans-serif;
          }
  
          .footer-logo p {
              font-size: 1rem;
              line-height: 1.6;
              color: white;
              
          }
  
          .footer-nav h4,
          .footer-social h4 {
              font-size: 1.2rem;
              margin-bottom: 0.8rem;
              color: rgb(246, 119, 24);
              text-decoration: underline overline;
              font-family: 'Inter', sans-serif;
          }
  
          .footer-nav ul,
          .footer-social ul {
              list-style: none;
              padding: 0;
              margin: 0;
              font-family: 'Inter', sans-serif;
          }
  
          .footer-nav li,
          .footer-social li {
              margin-bottom: 0.5rem;
          }
  
          .footer-nav a,
          .footer-social a{
              color: #fff;
              text-decoration: none;
              transition: opacity 0.3s;
          }
  
          .footer-nav a:hover {
              opacity: 0.8;
          }
  
          
  
  
          @media (max-width: 768px) {
              .footer-container {
                  flex-direction: column;
                  align-items: flex-start;
              }
  
              .footer-bottom {
                  text-align: left;
              }
          }
  

  
  .logo-icon {
    height: 4rem;
    vertical-align: middle;
    margin-right: 0.3rem;
  }
  