/* Privacy Policy Section Styling */
.about {
  background-color: #f8f9fa; /* light grey background */
}

.about h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1d2a38;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1d2a38;
  margin-top: 25px;
}

.about p, 
.about li {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.about ul {
  margin-left: 20px;
  list-style: disc;
}

.about strong {
  color: #000;
}

/* Optional: container content spacing */
.about .container {
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .about .container {
    padding: 20px;
  }

  .about h2 {
    font-size: 26px;
  }

  .about h4 {
    font-size: 18px;
  }

  .about p, 
  .about li {
    font-size: 15px;
  }
}
