/* ======================================
   PRIVACY POLICY PAGE – ELITE5PRO
   ====================================== */

.privacy-policy-section {
  padding: 60px 20px;
  padding-top: 20px;
  background: #ffffff;
}

.pp-container {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
  color: #333;
  font-size: 16px;
}

/* ===== HEADINGS ===== */

.pp-container h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pp-date {
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
}

.pp-container h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
}

.pp-container h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 6px;
}

/* ===== PARAGRAPHS ===== */

.pp-container p {
  margin-bottom: 14px;
}

/* ===== LINKS ===== */

.pp-container a {
  color: #1a73e8; /* Elite blue */
  font-weight: 600;
  text-decoration: none;
}

.pp-container a:hover {
  text-decoration: underline;
}

/* ===== DIAMOND BULLET LIST ===== */

.pp-list {
  list-style: none;
  margin: 12px 0 18px 0;
  padding-left: 0;
}

.pp-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}

/* Blue diamond bullet */
.pp-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #1a73e8;
  font-size: 14px;
  line-height: 1.4;
}

/* ===== EMPHASIS ===== */

.pp-container strong {
  font-weight: 700;
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {
  .privacy-policy-section {
    padding: 40px 0px;
  }

  .pp-container {
    font-size: 15px;
  }

  .pp-container h1 {
    font-size: 28px;
  }

  .pp-container h2 {
    font-size: 20px;
  }

  .pp-container h3 {
    font-size: 17px;
  }
}
