/* ===== Base ===== */
.about-section {
  padding: 80px 20px;
  background: #0f1117;
  color: #e6e6e6;
  min-height: 100vh;
}

.container {
  max-width: 1000px;
  margin: auto;
}

/* ===== Headings ===== */
.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: #ffffff;
}

.about-section h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #00d4ff;
}

.about-section h3 {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #ffffff;
}

/* ===== Content Blocks ===== */
.about-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.about-block:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

/* ===== Text ===== */
.about-block p {
  line-height: 1.7;
  margin-bottom: 12px;
  color: #cfcfcf;
}

/* ===== Lists ===== */
.about-block ul {
  padding-left: 20px;
}

.about-block li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ===== Support Box ===== */
.support-box {
  margin-top: 30px;
  padding: 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.support-box h3 {
  margin-bottom: 10px;
  color: #00d4ff;
}

.support-sub {
  color: #aaa;
  margin-bottom: 20px;
}

/* ===== Payment Grid ===== */
.support-grid {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* PayPal */
.paypal-box {
  min-width: 280px;
}

/* UPI */
.upi-box {
  display: flex;
  flex-direction: column;
  align-items: center; /* 👈 center align */
}

.upi-box img {
  width: 180px;
  margin-top: 10px;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
}

/* UPI Button */
.upi-button {
  display: inline-block;
  padding: 10px 18px;
  background: #00d4ff;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.upi-button:hover {
  background: #00aacc;
}

/* ===== Bottom Section ===== */
.support-bottom {
  margin-top: 25px;
  text-align: center;
}

.support-bottom a {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 500;
}

.support-bottom a:hover {
  text-decoration: underline;
}

.upi-button {
  display: inline-block;
  margin-top: 12px; /* 👈 gap between QR & button */
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-section h1 {
    font-size: 2rem;
  }

  .about-section h2 {
    font-size: 1.4rem;
  }

  .support-grid {
    flex-direction: column;
  }
}