.st-active {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 20px 0;
}

.st-active a {
  text-decoration: none;
  margin: 10px;
  transition: transform 0.3s ease;
}

.st-active a:hover {
  transform: scale(1.05);
}

.st-active-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px;
  background-color: #728124;
  color: white;
  border-radius: 5px;
  min-width: 150px;
}

.st-active-link img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.subscription-page .feedback-message {
  margin: 60px 30px 0;
  text-align: center;
  color: #728124;
}

@media (max-width: 768px) {
  .st-active {
    flex-direction: column;
    align-items: center;
  }

  .st-active a {
    margin: 5px 0;
  }
}

