body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #6036D6 0%, #ffffff 80%);
  color: #333;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

h1 {
  text-align: center;
  color: #0a58ca;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6036D6, #ED1B2400);
  margin-top: 8px;
  border-radius: 3px;
}

/* ===== Terms & Conditions ===== */

.card {
  border-right: 5px solid #6036D6;
}

.terms-box {
  background: #f8f9ff;
  border-radius: 12px;
  padding: 20px 22px;
  line-height: 1.9;
}

/* Title */
.terms-title {
  font-size: 20px;
  font-weight: bold;
  color: #2c2c6c;
  margin-bottom: 14px;
  padding-right: 10px;
  border-right: 4px solid #6036D6;
}

/* Content */
.terms-content {
  font-size: 18px;
  color: #444;
}

/* لو المحتوى جاي HTML من API */
.terms-content p {
  margin-bottom: 12px;
}

.terms-content ul {
  padding-right: 20px;
  margin-bottom: 12px;
}

.terms-content li {
  margin-bottom: 8px;
}

/* Mobile */
@media (max-width: 600px) {
  .terms-title {
    font-size: 16px;
  }

  .terms-content {
    font-size: 20px;
  }
}

.contact span {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
}

.faq-item {
  margin-bottom: 18px;
}

.faq-item strong {
  display: block;
  margin-bottom: 5px;
}

ul {
  padding-right: 20px;
}

li {
  margin-bottom: 8px;
}

footer {
  text-align: center;
  color: #888;
  font-size: 14px;
  margin-top: 40px;
}