.support-container {
  height: 340px;
  position: relative;
  background: #0061FE;
  border-radius: 25px;
  padding: 40px;
  display: flex;
}

.support__icon {
  flex: 1;
  width: 252px;
  height: 252px;
}

.support__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support__content {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin-left: 20px;
}

.support__title {
  margin: 0;
}

.support__subtitle {
  margin: 0;
}

.support__button {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.support__button:hover {
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .support-container {
    height: auto;
    flex-direction: column;
    padding: 30px;
  }

  .support__icon {
    width: 156px;
    height: 156px;
    margin: 0 auto;
  }
}