.interactive-offers {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 100px 60px;
  background-color: #000;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

.offers-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.offers-left img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 30px;
  object-fit: cover;
  height: 400px;
}

.offers-left p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
  margin-top: 16px;
  display: flex;
  align-items: center;
}

.offers-left p::before {
  content: "●";
  font-size: 20px;
  color: white;
  margin-right: 10px;
}

.offers-right {
  flex: 1;
}

.offers-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #fff;
}

.offers-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.offer-item {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  border-bottom: 1px solid #333;
}

.offer-item:last-child {
  border-bottom: none;
}

.offer-item::before {
  content: "←";
  font-size: 30px;
  display: inline-block;
  color: #fff;
  transition: 0.2s ease;
}

.offer-item.active {
  color: #22c55e;
  font-weight: 500;
}

.offer-item.active::before {
  color: #22c55e;
}

@media (max-width: 1024px) {
  .interactive-offers {
    flex-direction: column-reverse;
    padding: 60px 60px;
  }

  .offer-item::before {
    display: none;
  }

  .offers-left p::before {
    display: none;
  }

  .offers-list {
    flex-direction: row;
    gap: 20px;
    max-width: 100%;
    overflow-x: auto;
  }

  .offer-item {
    text-wrap: nowrap;
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .interactive-offers {
    gap: 30px;
  }

  .offers-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .offer-item {
    font-size: 16px;
  }

  .offers-left p {
    margin-top: 12px;
    font-size: 14px;
  }

  .offers-left img {
    height: 300px;
  }
}

@media (max-width: 568px) {
  .interactive-offers {
    padding: 40px 18px;
  }

  .offers-left img {
    height: 250px;
  }
}
