/* Ausgelagertes CSS für das Zweispalten-Layout */


/* Globale Einstellungen */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
font-family: Arial, Helvetica, sans-serif; /* Arial bevorzugt */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #222;
background: #fff;
}


.container {
max-width: 1100px;
margin: 40px auto;
padding: 0 16px;
}


/* Zweispalten-Layout */
.two-column {
display: flex;
gap: 24px;
align-items: center; /* Bild und Text vertikal zentriert */
}


.col {
flex: 1 1 50%; /* beide Spalten je 50% */
}


.text-col {
/* optional: angenehme Lesebreite */
min-width: 0; /* verhindert Überlauf bei langen Texten */
}


.image-col {
display: flex;
justify-content: center;
align-items: center;
}


.image-col img {
width: 400px; /* gewünschte Breite */
max-width: 100%; /* responsiv: schrumpft auf kleinen Bildschirmen */
height: auto;
display: block;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}


/* Responsive: auf sehr kleinen Bildschirmen eine Spalte */
@media (max-width: 700px) {
.two-column {
flex-direction: column;
gap: 16px;
}
.col { width: 100%; }
}


        .note {
            margin-top: 120px;
            font-size: 20px;
            line-height: 1.7;
        }