.pdf-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.jpg-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pdf-frame {
    width: 90%;
    height: 1000px; /* Desktop height */
}

.jpg-frame {
    width: 90%;
    height: auto;
}

/* Mobile */
@media (max-width: 440px) {
    .pdf-frame {
        display:none !important;
    }
}

@media (min-width: 440px) {
    .jpg-frame {
        display:none !important;
    }
}

.jpg-wrapper > .pdf-download {
    width: 200px;
    margin-top: 15px;
    padding: 8px 14px;
    background: #007bff;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

.jpg-wrapper > .pdf-download:hover {
    background: #0056b3;
}
