/* ===== DESKTOP STYLES (Deine Originale) ===== */
main {
  background-color: #B0BF9B;
}

.splitBox {
  padding-top: 50px;
  display: flex;
  width: 100%;
  height: 700px;
}

.imageSide {
  width: 50%;
}

.imageSide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.textSide {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:  40px 10px;
}

p {
  margin-bottom: 15px;
  font-size: 1.505vw; /* Bleibt für Desktop so */
  line-height: 1.5;
}

.aboveRed {
  margin-bottom: 0px;
}

.red {
  color: #AF1A23;
  font-weight: bold;
}

/* ===== MEDIA QUERY FÜR HANDYS (max-width: 768px) ===== */
@media (max-width: 768px) {
  .splitBox {
    flex-direction: column; /* Bild oben, Text unten */
    height: auto; /* Höhe muss auf auto, damit der Text Platz hat */
    padding-top: 0;
  }

  .imageSide {
    width: 100%;
    height: 300px; /* Festgelegte Höhe für das Profilbild auf dem Handy */
  }

  .textSide {
    width: 100%;
    padding: 30px 20px; /* Genug Abstand zu den Rändern */
    text-align: center; /* Text auf dem Handy zentriert sieht oft besser aus */
  }

  p {
    font-size: 17px; /* Feste, gut lesbare Größe für mobile Geräte */
    margin-bottom: 20px;
  }

  .red {
    font-size: 19px;
    margin-top: 10px;
  }
}