 body {
     font-family: Arial, sans-serif;
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     line-height: 1.6;
    background: url('../../static/banner5.png') no-repeat center center/cover;
     background-attachment: fixed;
 }

 section {
     margin-top: 0 !important;
 }

 .contact-button {
     display: inline-block;
     margin-top: 20px;
     padding: 10px 20px;
     background-color: rgba(255, 255, 255, 0.2);
     color: #fff;
     text-decoration: none;
     font-weight: 700;
     border: 1px solid #fff;
     border-radius: 5px;
     transition: background-color 0.3s, color 0.3s, border 0.3s;
 }

 .contact-button:hover {
     background-color: rgba(255, 255, 255, 0.4);
 }





 /*----------------------------------------------------------------------*/

 .service-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     padding: 20px;
     gap: 20px;
     /* Fügt Abstand zwischen den Karten hinzu */
 }

 .service-card {
     display: flex;
     flex-direction: column;
     align-items: center;
     width: 32%;
     /* Passt sich auf einem breiten Bildschirm optimal an */
     box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.5);
     border-radius: 2px;
     overflow: hidden;
        border-left: solid 4px #00ffc2;
            border-radius: 6px;
 }

 /* Service Image mit dunklem Overlay-Effekt */
 .service-image {
     width: 100%;
     height: 300px;
     display: flex;
     justify-content: center;
     align-items: center;
     background-size: cover;
     background-position: center;
     color: white;
     text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
     position: relative;
     overflow: hidden;
 }

 .service-image::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.4);
     /* Dunkler Überlagerungseffekt */
     z-index: 1;
 }

 .service-image h2 {
     position: relative;
     z-index: 2;
     /* Hält den Text über der Überlagerung */
     color: #fff;
     font-size: 1.5rem;
     font-weight: 700;
     text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
 }

 .service-text {
     padding-left: 10px;
     /* Abstand um den Text auf allen Seiten */
     padding-right: 10px;
     text-align: justify;
     /* Blocksatz für den Text */
    color: #ffffff;
     font-size: 1rem;
     line-height: 1.6;
     margin: 0 20px 20px;
     /* Abstand zur Border */
 }


 .impressum-container {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     /* Ändert die Ausrichtung auf links */
     min-height: 80vh;
     /* Reduziert den Abstand zum oberen Bereich */
     text-align: left;
     /* Text linksbündig */
     margin: 20px 40px;
     /* Fügt etwas Abstand vom Rand hinzu */
    color: #ffffff;
 }

 .justified-text p {
     text-align: justify;
 }

 .impressum-container p {
     margin: 10px 0;
     font-size: 1.2rem;
     /* Größere Schriftgröße für den Text */
 }

 /* Subheadings: Überschrift für Adresse und Kontakt */
 .subheading {
     margin-bottom: 20px;
     /* Fügt eine Leerzeile nach der Überschrift hinzu */
     font-weight: bold;
     font-size: 1.4rem;
     /* Größere Schriftgröße für Überschriften */
 }

 /* Optional: Email- und Webseitenlinks können angepasst werden */
 .impressum-container a {
    color: #00ffc2;
     text-decoration: underline;
     font-size: 1.2rem;
     /* Größere Schriftgröße für die Links */
 }

 .impressum-container a:hover {
     text-decoration: none;
 }

 .data-sec-container {
     margin: 20px;
     line-height: 1.6;
        color: #ffffff;
 }

 .data-sec-container h2 {
     font-size: 2rem;
     font-weight: bold;
 }

 .data-sec-container h3 {
     font-size: 1.5rem;
     /* Größere Überschriften für bessere Hierarchie */
     font-weight: bold;
     margin-top: 20px;
 }

 .data-sec-container p {
     font-size: 0.9rem;
     /* Verkleinert den Text in den Absätzen */
     margin: 10px 0;
 }

 .data-sec-container ul {
     font-size: 0.9rem;
     /* Verkleinert auch die Listeneinträge */
     margin: 10px 0;
     padding-left: 20px;
 }

 .data-sec-container a {
     color: rgb(255, 255, 255);
     text-decoration: underline;
 }

 .data-sec-container a:hover {
     text-decoration: none;
 }


.page-header {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-top: 50px
}

.page-header h2 {
    margin-top: 0px !important;
        margin-bottom: 0px !important;
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
}
 @keyframes bounce {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(10px);
     }
 }
