.cv-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}
.cv-pdf {
    width: 90vw;
    max-width: 800px;
    height: 1100px;
    border: 2px solid #218256;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    margin-top: 2rem;
    background: white;
}
@media (max-width: 900px) {
    .cv-pdf {
        height: 70vw;
        min-height: 400px;
    }
}
@media (max-width: 600px) {
    .cv-pdf {
        width: 98vw;
        height: 60vw;
        min-height: 300px;
    }
}