
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}


.sektion {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}


.sektion h1 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #ff7256;
    text-align: center;
}

.sektion h2 {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #333;
}


.sektion p {
    margin-bottom: 15px;
}

/* Abschnitt Footer */


#footer {
    min-height: 25vh;
    background-color: #f9f9f9; 
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-content {
    text-align: center;
    width: 100%;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
  }
  
  .footer-links li {
    margin: 5px 0;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #333;
  }
  
  .footer-links a:hover {
    color: #ff7256;
  }
  
  .footer-bottom {
    font-size: 0.9em;
    color: #777;
  }


@media (max-width: 600px) {
    .sektion {
        padding: 20px;
    }

    .sektion h1 {
        font-size: 1.5em;
    }

    .sektion h2 {
        font-size: 1.2em;
    }
}
