.support-app {
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px 20px;
  color: var(--MainFontColor);
}

.support-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.support-text {
  flex: 1 1 500px;
}

.support-text h2 {
  font-size: 2rem;
  color: var(--MainColor);
  margin-bottom: 15px;
}

.support-text p {
  margin-bottom: 20px;
  color: #CCC;
  line-height: 1.6;
}

.support-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.support-text ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.support-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--HighlightColor);
}

.btn-store {
  background: #0078D7;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 0 0 10px rgba(0,120,215,0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-store:hover {
  background: #005fa1;
  box-shadow: 0 0 15px rgba(0,120,215,0.6);
}

.support-image {
  flex: 1 1 400px;
}

.support-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(122, 53, 255, 0.2);
}