/* ======================================
   TRUST & SAFETY – ELITE5PRO
   ====================================== */

.trust-safety-section {
  padding: 20px 20px 10px; /* reduced top spacing */
  background: #ffffff;
}

.ts-container {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
  color: #333;
  font-size: 16px;
}

/* HEADINGS */
.ts-container h1 {
  font-size: 34px;
  margin-bottom: 12px;
}

.ts-container h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 34px;
  margin-bottom: 12px;
}

/* PARAGRAPHS */
.ts-container p {
  margin-bottom: 14px;
}

/* LINKS */
.ts-container a {
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
}

.ts-container a:hover {
  text-decoration: underline;
}

/* BLUE DIAMOND BULLETS */
.ts-list {
  list-style: none;
  margin: 12px 0 18px 0;
  padding-left: 0;
}

.ts-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}

.ts-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #1a73e8;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .ts-container h1 {
    font-size: 28px;
  }

  .ts-container h2 {
    font-size: 20px;
  }
}

