/* CSS Document */
.orange-bar {
  margin-top: 20px; /* Hier kannst du den gewünschten Abstand einstellen */
  margin-bottom: 20px; /* Hier kannst du den gewünschten Abstand einstellen */
  height: 5px;
  background-color: orange;
}
.blue-underline {
    border-bottom: 1px solid #00305D;
    margin-bottom: 20px;
}
.green-underline {
    border-bottom: 1px solid #282c2f;
    margin-bottom: 20px;
}
.footer-bar {
    background-color: #F49C00;
    height: 40px; /* Hier kannst du die Höhe anpassen */
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-text {
    color: white;
    font-size: 15px;
    margin: 0;
}
