* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo img {
    height: 40px;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.navbar a:hover,
.navbar a.active {
    color: #007BFF;
}

/* Hauptbereich */
main {
    text-align: center;
    padding: 130px 20px 80px;
}

main h1 {
    color: #333;
    margin-bottom: 30px;
}

/* Über mich Container */
.ueber-mich-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left; /* alles im Container linksbündig */
}

.profilbild img {
    max-height: 300px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Bio & Laufbahn */
.bio-und-laufbahn {
    flex: 2 1 600px;
}

.bio-und-laufbahn h2 {
    margin: 10px 0 8px 0;
}

.bio-und-laufbahn p {
    margin: 0 0 15px 0;
}

/* Laufbahn */
.laufbahn h2 {
    margin-top: 25px;
}

.laufbahn ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0 0;
}

.laufbahn li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.laufbahn li strong {
    display: block;
    margin-bottom: 3px;
}

 .Praxisbild {
  display: flex;
  gap: 15px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  align-items: flex-start; /* Start oben */
}

.Praxisbild img {
  height: 250px;         /* feste Höhe */
  width: auto;           /* Breite passt sich proportional an */
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  object-fit: cover;     /* Bild wird passend zugeschnitten, falls nötig */
}

/* Container für Behandlungsangebot */
.behandlungsangebot-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}
