<style>
/* Target the main h1 directly */
article.userguide h1 {
  font-size: 1.5rem;          
  margin-top: 1em;
  margin-bottom: 0.5em;
  line-height: 1.2;
  font-weight: bold;
}

/* Optional responsive adjustment */
@media (max-width: 768px) {
  article.userguide h1 {
    font-size: 2.5rem;        /* scales down nicely */
  }
}
/* === PRIVACY start: BETTER LINE SPACING === */
.start-section {
    margin-bottom: 2.5rem;
    line-height: 1.7; /* ← INCREASED FROM DEFAULT ~1.2 */
}

.start-section h2 {
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    text-align: left;
    width:100%;
}

.start-section h3 {
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.start-section p,
.start-section ul,
.start-section li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.start-section ul {
    padding-left: 1.5rem;
}

.start-section li {
    margin-bottom: 0.6rem;
}

/* Optional: Better spacing for last updated */
.last-updated {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #555;
}

  .userguide figure {
    margin: 1.5rem 0;
    text-align: center;
}

.userguide img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.userguide figcaption {
    margin-top: 0.5rem;
    font-style: italic;
    font-weight: 800;
    text-align: center;
}


</style>