body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.cv-preview {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
}

/* Make PDF preview responsive */
.cv-preview embed {
    width: 100%;
    height: 500px;
}

/* Download Button */
button {
    display: block;
    width: 200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 12px;
    background: #007bff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

/* ---------------------------
   Mobile Responsive Section
----------------------------*/
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 14px;
    }

    .cv-preview embed {
        height: 350px;
    }

    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 22px;
    }

    .cv-preview embed {
        height: 280px;
    }

    button {
        font-size: 14px;
        padding: 10px;
    }
}
