.pdf-container {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Widen and center on desktop (1024px and up) */
@media (min-width: 1024px) {
    .pdf-container {
        max-width: 2000px; /* Adjust width as desired */
        padding: 0 40px;
    }

    iframe {
        height: 1000px;
    }
}

iframe {
    width: 100%;
    height: 800px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
}

.download-button {
    display: inline-block;
    background-color: #005b99;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .download-button:hover {
        background-color: #004477;
    }
