/* ==========================================================================
   Policy & Legal Pages Stylesheet (Refund Policy, Terms & Privacy)
   ========================================================================== */

/* Page Header Banner */
.page-title-area {
   background-color: #f4f6f8;
   padding: 80px 0 60px 0;
   border-bottom: 1px solid #e5e8ec;
}

.page-title-area .section-title {
   font-family: 'Inter', sans-serif;
   font-size: 42px;
   font-weight: 800;
   color: #111827;
   margin-bottom: 10px;
   line-height: 1.2;
}

.page-title-area p {
   font-size: 16px;
   color: #6b7280;
   max-width: 600px;
   margin: 0 auto;
}

/* Policy Content Container */
.terms-section {
   padding: 70px 0 90px 0;
   background-color: #ffffff;
}

.terms-content {
   color: #4b5563;
   font-family: 'Roboto', sans-serif;
   font-size: 16px;
   line-height: 1.7;
}

.terms-content p {
   margin-bottom: 20px;
   color: #4b5563;
}

/* Section Headings */
.terms-content .font-weight-bold {
   font-family: 'Inter', sans-serif;
   font-size: 20px;
   font-weight: 700;
   color: #0f172a;
   margin-top: 30px;
   margin-bottom: 10px;
   line-height: 1.4;
   display: block;
}

/* Contact Info Box */
.terms-content ul {
   list-style: none;
   padding-left: 0;
   margin-top: 15px;
   background-color: #f8fafc;
   border-left: 4px solid #0056b3;
   padding: 20px 25px;
   border-radius: 0 8px 8px 0;
}

.terms-content ul li {
   font-size: 15px;
   color: #334155;
   margin-bottom: 10px;
   display: flex;
   align-items: center;
}

.terms-content ul li:last-child {
   margin-bottom: 0;
}

.terms-content ul li strong {
   color: #0f172a;
   min-width: 90px;
   display: inline-block;
}

/* Responsive Mobile Adjustments */
@media (max-width: 768px) {
   .page-title-area {
      padding: 50px 0 40px 0;
   }
   
   .page-title-area .section-title {
      font-size: 30px;
   }
   
   .terms-section {
      padding: 40px 0 60px 0;
   }
   
   .terms-content .font-weight-bold {
      font-size: 18px;
      margin-top: 20px;
   }

   .terms-content ul {
      padding: 15px;
   }

   .terms-content ul li {
      flex-direction: column;
      align-items: flex-start;
   }

   .terms-content ul li strong {
      margin-bottom: 2px;
   }
}