:root {
  --primary-color: #A3238e;
  --dark-gray: #424242;
}

body {
  background: radial-gradient(
    circle at top right,
    rgba(175, 6, 164, 0.02),
    transparent 32%
  ),
  linear-gradient(180deg, #fcfafc 0%, #f9f6f9 100%);
}

.terms-page {
  direction: rtl;
  padding: 60px 20px;
  font-family: peyda;
}

.terms-container {
  max-width: 950px;
  margin: 50px auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.terms-header {
  color: #333;
  padding: 40px;
  text-align: center;
  border-bottom: 5px solid var(--primary-color);
}

.header-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.terms-header h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.terms-body {
  padding: 40px;
  line-height: 1.9;
  color: #555;
}

.terms-section {
  margin-bottom: 35px;
}

.terms-section h2 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-right: 4px solid var(--primary-color);
  padding-right: 15px;
}

.terms-section ul {
  padding-right: 25px;
}

.terms-section ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.highlight-box {
  background-color: rgba(175, 6, 164, 0.05);
  padding: 20px;
  border-radius: 12px;
  border: 1px dashed var(--primary-color);
}

.terms-footer {
  background: #f9f9f9;
  padding: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .terms-body {
    padding: 20px;
  }
  .terms-header h1 {
    font-size: 1.5rem;
  }
}
