/* ================= SUPPORT SECTION ================= */

.support-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #ffffff, #ffffff);
}

.support-container {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2c9a8f, #1a7a6e);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    
    overflow-x: hidden;
    overflow-y: auto;     /* ADD THIS */
}

/* ADD THIS ENTIRE NEW SECTION */
.support-container::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.support-container::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
}

/* Header */
.support-header {
  text-align: center;
  margin-bottom: 50px;
}

.support-subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 12px;
}

.support-title {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 16px;
}

.support-description {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
}

/* Cards */
.support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.support-card {
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.support-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.18);
}

.support-icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.support-icon svg {
  width: 28px;
  height: 28px;
  stroke: #2c9a8f;
  fill: none;
  stroke-width: 2;
}

.support-card h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 12px;
}

.support-card p {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.support-card a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .support-container {
    padding: 40px 25px;
  }

  .support-title {
    font-size: 32px;
  }
}
