body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #f4f6f9;
    color: #222;
}

/* Subtle technical background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0;
}

.navigate {
    margin-left: 140px;   /* Abstand nach links */
/*    font-size: 1em;      /* gleiche Höhe wie der Text im H1 */
/*    font-weight: normal; /* optional */
}

header {
    background: #1e2a38;
    color: white;
    padding: 20px 0;
}

.small-header {
    background: #2f3e52;
    color: white;
    padding: 15px 0;
}

.header-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 90px;
}

nav {
    background: #0f4c81;
    padding: 10px 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background: #dbe8f4;
    padding: 20px 0;
}

h1, h2, h3 {
    margin-bottom: 10px;
}

ul {
    line-height: 1.8;
}

.kontakt-container {
    display: flex;
    align-items: flex-start; /* Bild und Text oben bündig */
    gap: 80px; /* Abstand zwischen Bild und Text */
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

.kontakt-bild {
    width: 150px; /* oder was du brauchst */
    height: auto;
    border-radius: 4px; /* optional */
    margin-top: 20px;   /* Bild nach unten verschieben */
    margin-bottom: 20px;
}

footer {
    background: #8e2a38;
    color: white;
    text-align: center;
    padding: 15px 20px;
    margin-top: 20px;
}