/* Container for the image */
.kvido.holzbach.fotka {
  float: left;
  width: 300px;          /* Keep image size */
  margin-right: 30px;    /* Space between image and text */
  margin-top: 50px;
}

/* Make sure image fits container */
.kvido.holzbach.fotka img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 0px;
}
/* Hero section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  padding: 0 5%;
}

/* Blue card */
.hero-card {
  background-color: #0a2c4d;
  color: white;
  padding: 2rem;
  border-radius: 30px;
  max-width: 600px;
  text-align: left;
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: auto; /* Allow content to grow naturally */
  }

  .kvido.holzbach.fotka {
    float: none;
    width: 80%; /* Resize image for smaller screens */
    margin: 0 auto 20px auto;
  }

  .hero-card {
    width: 100%;
    max-width: 90%; /* Use most of the screen */
    border-radius: 20px;
  }
}

