/* -- Import Font -- */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

/* -- General Styling -- */
body {
  font-family: "Roboto", sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.7;
}

.policy-content {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto; /* Tự động căn giữa */
}

/* -- Typography -- */
.main-title {
  color: #10396a;
  font-weight: 700;
  font-size: 2.5rem;
}

/* 
--- ĐÂY LÀ PHẦN CHỈNH SỬA QUAN TRỌNG NHẤT ---
*/
.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-top: 2rem;
  margin-bottom: 1.8rem;
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section p {
  color: #555;
  margin-bottom: 1rem;
}

.policy-section ul {
  padding-left: 25px;
  margin-top: 1rem;
  list-style-position: outside;
}

.policy-section ul li {
  margin-bottom: 0.75rem;
  padding-left: 5px;
}

strong {
  color: #000;
  font-weight: 500;
}

/* -- Responsive adjustments -- */
@media (max-width: 768px) {
  .policy-content {
    padding: 25px;
  }
  .main-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1rem;
  }
}
