.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}

  .pdf-container {
	padding: 20px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  /* Hide mobile download link by default */
  .pdf-download {
    display: none;
  }

  .pdf-download-btn {
    display: block;
    margin-top: 10px;
    padding: 12px 24px;
    background-color: var(--blue);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  .pdf-download-btn:hover {
    background-color:  var(--yellow);
  }

  /* At screens 600px and below, hide the embed and show download link */
  @media (max-width: 600px) {
    #pdfEmbed {
      display: none;
    }
    #pdfDownload {
      display: block;
    }
  }