/* ===== HELP & SUPPORT SECTION ===== */

.support-section {
  background: #1e2f4d;
  padding: 80px 20px;
  color: #f1f5f9;
}

.support-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left Side */
.support-left {
  flex: 1;
  min-width: 300px;
}

.support-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.support-left p {
  color: #94a3b8;
  margin-bottom: 25px;
  line-height: 1.6;
}

.support-features {
  list-style: none;
  padding: 0;
}

.support-features li {
  margin-bottom: 12px;
  color: #38bdf8;
  font-weight: 500;
}

/* Right Card */
.support-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.support-card {
  background: #1e293b;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.support-card h3 {
  margin-bottom: 15px;
}

.support-card p {
  color: #94a3b8;
  margin-bottom: 25px;
}

/* Buttons */
.support-btn {
  display: block;
  margin-bottom: 15px;
  padding: 12px;
  text-decoration: none;
  background: #38bdf8;
  color: #0f172a;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.support-btn:hover {
  background: #fbbf24;
}

.support-btn.secondary {
  background: transparent;
  border: 2px solid #38bdf8;
  color: #38bdf8;
}

.support-btn.secondary:hover {
  background: #38bdf8;
  color: #0f172a;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .support-container {
    flex-direction: column;
    text-align: center;
  }

  .support-left h2 {
    font-size: 26px;
  }
}