body {
  margin: 0;
  padding: 0;
  background-color: #F8F9FF;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 698px;
  height: auto;
}

.background-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 95vh;
  object-fit: contain;
}

.btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.btn-26 {
  bottom: 61px;
}

.btn-25 {
  bottom: calc(61px + 33px + 44px); /* или 138px */
}

.btn img {
  width: 240px;
  height: auto;
}

/* 📱 Адаптация для экрана до 480px */
@media (max-width: 480px) {
  .image-wrapper {
    max-width: 100vw;
    padding: 0 10px;
    overflow: hidden;
    position: relative;
  }

  .btn {
    transform: translateX(-50%) scale(0.9);
  }

  .btn-25 {
    bottom: 30%;
  }

  .btn-26 {
    bottom: 6%;
  }
}

