/* .hero {
  max-width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-logo {
  max-width: 100px;
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.content-area {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 740px;
  max-width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px 20px 20px 260px;
  color: #2E2B2B;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-text {
  
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.title {
  font-size: 70px;
  font-weight: 500;
  text-align: left;
}

.description {
  max-width: 740px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}

.buttons {
  display: flex;
  flex-direction: row;
  justify-content: left;
  gap: 25px;
}

@media (max-width: 1100px) {
  .hero {
    display: flex;
    flex-direction: column;
    background-color: var(--jkpodolog-color-ivory);
    height: auto;
  }

  .hero-text {
    max-width: 600px;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: unset;
    aspect-ratio: 1/1;
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: right;
  }

  .content-area {
    position: unset;
    top: unset;
    left: unset;
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 30px 20px 40px 20px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: unset;
  }

  .title {
    font-size: 36px;
  }

  .description {
    font-size: 20px;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    width: 100%;
  }

  .buttons a {
    width: fit-content;
  }


} */