/* ----------------------------------
 * পলিসি পেইজ স্টাইল (TOS, Refund, Delivery)
 * ---------------------------------- */

/* ফন্ট (যদি আপনার মেইন CSS-এ না থাকে) */
@font-face {
  font-family: 'SolaimanLipi';
  src: url('/Font/SolaimanLipi-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* সব পলিসি পেইজের জন্য সাধারণ কন্টেইনার */
.policy-page {
  font-family: 'SolaimanLipi', sans-serif;
  background-color: #f4f7f9;
  color: #333;
  padding: 20px 10px; /* মোবাইলের জন্য প্যাডিং */
  line-height: 1.8;
  font-size: 17px;
}

.policy-page .container {
  max-width: 800px;
  margin: 40px auto;
  background-color: #ffffff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  border: 1px solid #eef2f5;
}

/* পেইজের হেডার (শিরোনাম) */
.policy-page .header {
  text-align: center;
  border-bottom: 1px solid #eef2f5;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.policy-page h1,
.policy-page h2 {
  font-family: 'Hind Siliguri', sans-serif;
  font-weight: 700;
}

.policy-page h1 {
  color: #1a2a4c;
  font-size: 2.2em;
  margin-bottom: 5px;
}

.policy-page .last-updated {
  font-size: 0.9em;
  color: #777;
}

/* সেকশন শিরোনাম (H2) */
.policy-page h2 {
  font-size: 1.6em;
  color: #0056b3;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 4px solid #0056b3;
  padding-left: 15px;
}

.policy-page p,
.policy-page li {
  margin-bottom: 15px;
  text-align: justify;
}

.policy-page strong {
  font-weight: 600;
  color: #1a2a4c;
}

/* লিস্ট (ul) স্টাইল */
.policy-page ul {
  list-style-type: disc;
  padding-left: 30px;
}

/* হাইপারলিংক */
.policy-page a {
  color: #0056b3;
  text-decoration: none;
  font-weight: 500;
}
.policy-page a:hover {
  text-decoration: underline;
}

/* কন্টাক্ট সেকশন (শুধু শর্তাবলী পেইজে ব্যবহৃত) */
.policy-page .contact-section {
  margin-top: 40px;
  padding: 25px;
  background-color: #f9fafb;
  border-radius: 8px;
  border: 1px solid #eef2f5;
}

.policy-page .contact-section ul {
  list-style: none;
  padding: 0;
}
.policy-page .contact-section li {
  margin-bottom: 10px;
}


/* মোবাইল রেসপন্সিভ */
@media (max-width: 768px) {
  .policy-page .container {
    padding: 25px 20px;
    margin: 20px auto;
  }
  .policy-page h1 {
    font-size: 1.8em;
  }
  .policy-page h2 {
    font-size: 1.4em;
  }
  .policy-page {
    font-size: 16px;
  }
}