/* Container */
.policies-container {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 2.5rem 3rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  font-family: 'Inter', sans-serif;
  color: #222;
  line-height: 1.7;
  transition: all 0.3s ease-in-out;
}

/* Title */
.page-title {
  font-family: 'Teko', sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 2rem;
  border-bottom: 3px solid #0056d2;
  padding-bottom: 0.5rem;
}

/* Policies Section */
.policies-cont .policy {
  margin-bottom: 2rem;
  padding: 1.8rem 2rem;
  border-left: 4px solid #0056d2;
  background: #fafafa;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.policy-head {
  font-family: 'Teko', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #111;
}

.policy p {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.policy ul {
  margin: 1rem 0;
  padding-left: 1rem;
  list-style-type: none;
}

.policy ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
}

.policy ul li::before {
  content: '•';
  color: #0056d2;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.policy h5 {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #000;
  font-size: 0.9rem;
}

/* ============ Responsive Breakpoints ============ */

/* Large Desktops */
@media (min-width: 1200px) {
  .policies-container {
    max-width: 1100px;
  }
  .page-title {
    font-size: 3.2rem;
  }
}

/* Laptops / Large Tablets */
@media (max-width: 1199px) {
  .policies-container {
    max-width: 900px;
    padding: 2rem 2.5rem;
  }
  .page-title {
    font-size: 2.6rem;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .policies-container {
    max-width: 720px;
    margin: 2rem auto;
    padding: 1.8rem 2rem;
  }
  .page-title {
    font-size: 2.2rem;
  }
  .policy-head {
    font-size: 1.4rem;
  }
}

/* Small Tablets / Large Phones */
@media (max-width: 767px) {
  .policies-container {
    max-width: 90%;
    margin: 1.5rem auto;
    padding: 1.5rem;
  }
  .page-title {
    font-size: 1.8rem;
  }
  .policy p,
  .policy ul li {
    font-size: 0.95rem;
  }
  .policy ul {
    padding-left: 0;
  }
}

/* Small Phones */
@media (max-width: 575px) {
  .policies-container {
    max-width: 95%;
    margin: 1rem auto;
    padding: 1rem 1.2rem;
    border-radius: 8px;
  }
  .page-title {
    font-size: 1.5rem;
    border-bottom: 2px solid #0056d2;
  }
  .policy p,
  .policy ul li {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
