:root {
  --primary-color: #A3238e;
  --dark-bg: #424242;
  --text-gray: #555;
}

body{
  background: radial-gradient(
    circle at top right,
    rgba(175, 6, 164, 0.02),
    transparent 32%
  ),
  linear-gradient(180deg, #fcfafc 0%, #f9f6f9 100%);
}

.privacy-page {
  direction: rtl;
  padding: 80px 20px;
  font-family: peyda;
  line-height: 1.8;
}

.privacy-header {
  text-align: center;
  margin-bottom: 50px;
}

.privacy-header h1 {
  color: var(--dark-bg);
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.privacy-header h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.privacy-header p {
  color: #888;
  margin-top: 10px;
}

.privacy-content {
  max-width: 850px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-section p {
  color: var(--text-gray);
  text-align: justify;
}

.privacy-section ul {
  padding-right: 20px;
  color: var(--text-gray);
  margin-top: 10px;
}

.privacy-section ul li {
  margin-bottom: 8px;
  list-style-type: square;
}

.privacy-footer-note {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  text-align: center;
}

.privacy-footer-note a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.privacy-footer-note a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 25px;
  }
  .privacy-header h1 {
    font-size: 1.8rem;
  }
}
