    body {
      font-family: Arial, sans-serif;
      padding: 0.5rem;
      background-color: #f8f9f9;
      color: #2c3e50;
    }

    h1 {
      color: #116561;
      font-size: 1.3rem;
    }

    a {
      color: #116561;
    }

    p {
      font-size: 1rem;
      margin-bottom: 2rem;
      text-align: justify;
    }

    .links {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .links a {
      text-decoration: none;
      color: #116561;
      font-size: 1rem;
    }

    .links a:hover {
      text-decoration: underline;
    }

.help-image {
  height: auto;
  display: block;
  margin: 1em auto;
  max-width: 100%;
  width: auto;
  border: 1px solid black;
}

/* Mobile-first styles */
.help-image.landscape {
  width: 70%;
  max-width: 800px;
  min-width: 60%;
}

.help-image.portrait {
  width: 50%;
  max-width: 600px;
  min-width: 40%;
}

/* Desktop: refine layout */
@media (min-width: 768px) {
  .help-image.landscape {
    width: auto;
    max-width: 800px;
  }

  .help-image.portrait {
    width: auto;
    max-width: 500px;
  }
}


