html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-top: 2rem;
}

main,
section.container {
    flex: 1;
}


.about-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.about-text {
  flex: 1 1 500px;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: left;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.about-image {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1000px) {
  .about-image img {
    margin-top: 3rem;
  }
}
/* Mobile Ansicht */
@media (max-width: 768px) {
  .about-layout {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}
