.container-fluid {
  background-image:url(images/HG_grau-orange.png);
}
  .container {
    padding-top: 20px;
    background-color: rgb(255, 255, 255); /* Hier kannst du den gewünschten Abstand einstellen */
  }
/* --- Allgemeine Layout-Einstellungen --- */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20;
}

/* --- Responsive Images --- */
.row img {
    max-width: 100%;
    height: auto;
    display: block; /* Entfernt zusätzlichen Platz unter dem Bild */
    
}

/* --- Sektionen mit Bild und Text --- */
.content-section {
    margin-bottom: 30px; /* Abstand zwischen den Sektionen */
    align-items:flex-start; /* Zentriert Inhalt vertikal in der Reihe */
}

.content-section h2 {
    margin-bottom: 15px;
    color: rgb(255, 165, 0); /* Beispielhafte Überschriftenfarbe */
}
.content-section h1 {
    margin-bottom: 15px;
    color: rgb(255, 165, 0); /* Beispielhafte Überschriftenfarbe */
}


.content-section p {
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Layout für die Indexseite (Bild 2/3, Text 1/3) --- */
/* Bild links, Text rechts */



/* --- Layout für Themenseiten (Text 2/3, Bild 1/3) --- */
/* Text links, Bild rechts */
.theme-layout-text-left .text-col {
    flex: 0 0 66.6667%; /* 2/3 Breite */
    max-width: 66.6667%;
}
.theme-layout-text-left .image-col {
    flex: 0 0 33.3333%; /* 1/3 Breite */
    max-width: 33.3333%;
}

/* Bild links, Text rechts */
.theme-layout-image-left .text-col {
    flex: 0 0 66.6667%; /* 2/3 Breite */
    max-width: 66.6667%;
}
.theme-layout-image-left .image-col {
    flex: 0 0 33.3333%; /* 1/3 Breite */
    max-width: 33.3333%;
    /* Wenn das Bild links sein soll, muss es in der Bootstrap-Reihenfolge zuerst kommen */
}


/* --- Footer Styling (aus Ihrem Original-Code, falls noch nicht in styles.css) --- */
.footer {
    background-color: #c3cbd3f7; /* Hintergrundfarbe des Footers */
    padding: 40px 0;
    margin-top: 50px;
    border-top: 1px solid #e7e7e7;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap; /* Erlaubt Umbruch auf kleineren Bildschirmen */
    justify-content: space-around;
    gap: 20px; /* Abstand zwischen den Blöcken */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-block {
    flex: 1; /* Nimmt verfügbaren Platz ein */
    min-width: 250px; /* Mindestbreite für Blöcke */
    text-align: left;
}

.footer-block h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.25rem;
}

.footer-block p, .footer-block a {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-block a:hover {
    color: #007bff;
}

/* Navbar Styling Anpassungen (falls Ihr Logo zu groß ist) */
.navbar-brand img {
    max-height: 80px; /* Höhe des Logos anpassen */
    width: auto;
}
.main-content-area {
    margin-top: 40px; /* Sie können diesen Wert anpassen */
}
.content-section .text-col {
    padding: 30px; /* Fügt einen Innenabstand von 20px auf allen Seiten hinzu */
}
.container-datenschutz{padding-left: 20px;
    padding-right: 100px;

 }
   
    .wichtige-mitteilung-banner {
    /* Banner-Größe und Positionierung */
    width: 100%;             /* Nimmt die volle Breite des Containers ein */
    min-height: 200px;       /* Die gewünschte Höhe */
    background-color: #6a6968; /* Dunkelgrau (kann angepasst werden) */
    
    /* Text-Zentrierung (Flexbox) */
    display: flex;
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center;     /* Vertikale Zentrierung */
    
    /* Optional: Abstand nach unten */
    margin-bottom: 100px;
    
    /* Optional: leichte Abrundung der Ecken */
    border-radius: 5px;
}

.wichtige-mitteilung-banner p {
    /* Text-Gestaltung */
    color: #ff8c00;        /* Dunkelorange (kann angepasst werden) */
    font-family: Arial, sans-serif; /* Schriftart */
    font-size: 2em;        /* Schriftgröße */
    font-weight: bold;     /* Fettschrift */
    margin: 0;             /* Entfernt Standard-Absatz-Abstand */
    padding: 10px;         /* Optional: etwas Innenabstand */
}