/* ===== PRIVACY POLICY SECTION ===== */

.service-details-section {
  background: #ffffff;
  padding: 60px 0;
}

.privacy-policy-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 25px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  line-height: 1.7;
  font-size: 16px;
  color: #333;
}

/* Headings */
.privacy-policy-content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
  color: #222;
  border-left: 4px solid #6a00b1; /* Purple Accent */
  padding-left: 12px;
}

/* First heading should not have so much top margin */
.privacy-policy-content h3:first-of-type {
  margin-top: 25px;
}

/* Paragraphs */
.privacy-policy-content p {
  margin-bottom: 18px;
}

/* Lists */
.privacy-policy-content ul {
  margin: 12px 0 20px 20px;
  padding-left: 20px;
}

.privacy-policy-content ul li {
  margin-bottom: 8px;
  list-style: disc;
}

/* Strong text */
.privacy-policy-content strong {
  font-weight: 600;
}

/* Italics */
.privacy-policy-content em {
  color: #666;
}

/* Optional subtle divider between main sections */
.privacy-policy-content h3:not(:first-of-type)::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 25px;
  background: rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-policy-content {
    padding: 20px;
    font-size: 15px;
  }

  .privacy-policy-content h3 {
    font-size: 20px;
  }
}
