.item-wrapper {
  height: 100%;
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  gap: 2rem;
}

.item-wrapper h1 {
  font-size: 4rem;
}

.item-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  width: 80%;
  background-color: #e6e6e6;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.item-container-left,
.item-container-right {
  flex-basis: 100%;
  width: 50%;
  height: 100%;
}

.item-container-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  display: block;
}

.item-container-left {
  padding: 1rem;
}

.item-container-left h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.item-container-left ul li {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  margin-left: 2rem;
}

.item-container-left p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  margin: 2rem 0;
}

.contact-block a {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  background: rgb(114, 8, 158);
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
}

.other-models-list {
  font-size: 1.5rem;
}

.other-models-container {
  display: flex;
  width: 80%;
  justify-content: center;
  gap: 3rem;
}

@media (max-width: 768px) {
  .item-wrapper {
    margin-top: 100px;
    height: 100%;
    padding-top: 60px;
    padding: 60px 1rem 1rem 1rem;
  }

  .item-wrapper h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .item-container {
    flex-direction: column-reverse;
    padding: 1rem;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  .item-container-left,
  .item-container-right {
    flex-basis: 100%;
    width: 100%;
    height: 100%;
  }

  .item-container-img {
    border-radius: 1rem;
  }

  .other-models-container {
    flex-direction: column;
    height: 400px;
    overflow: scroll;
    gap: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 1rem;
  }

  .other-models-container ul {
    margin-left: 2rem;
  }
}
