/* public/css/terms.css در app.tamirko.ir */

/* استایل کلی کانتینر */
.terms-container {
  max-width: 80%;
  margin: 20px auto;
  padding: 20px;
  background-color: #f9f9f9; /* زمینه روشن */
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* سایه ملایم */
  direction: rtl; /* جهت راست به چپ */
  font-family: 'Vazirmatn', sans-serif;
}

/* استایل محتوای اصلی */
.terms-content {
  font-size: 16px;
  line-height: 1.6;
  color: #333; /* رنگ متن تیره */
}

/* عناوین */
.terms-content h1 {
  font-size: 24px;
  font-weight: 700;
  color: #39528a; /* رنگ آبی برای عناوین (قابل تغییر به تم اپ) */
  margin-bottom: 20px;
  text-align: center;
}

.terms-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: #39528a;
  margin: 15px 0 10px;
}

/* پاراگراف‌ها */
.terms-content p {
  margin-bottom: 15px;
  text-align: justify;
}

/* لیست‌ها */
.terms-content ul {
  list-style-type: disc; /* bullets گرد */
  margin-right: 20px; /* فاصله از راست برای RTL */
  margin-bottom: 15px;
}

.terms-content li {
  margin-bottom: 10px;
}

/* responsive برای موبایل */
@media (max-width: 768px) {
  .terms-container {
    max-width: 95%;
    padding: 15px;
  }

  .terms-content h1 {
    font-size: 20px;
  }

  .terms-content {
    font-size: 14px;
  }
}