/* Resume Page Enhancements */

.resume {
    padding: 60px 0;
    max-width: 900px;
    margin: auto;
}

.resume h2 {
    margin-top: 50px;
    font-size: 1.8rem;
    color: #0b3d91;
    border-bottom: 2px solid #d8dde6;
    padding-bottom: 8px;
}

.resume p {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.resume-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.resume-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.resume-section {
    margin-top: 30px;
    padding: 20px;
    background: #f9fafc;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
}

.resume-section h3 {
    margin-top: 0;
    color: #0b3d91;
}

.resume-dates {
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
}

.resume-section ul {
    margin-top: 10px;
    padding-left: 20px;
}

.resume-section ul li {
    margin-bottom: 8px;
}

/* Download Button */
.download-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 20px;
    background: #0b3d91;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.download-btn:hover {
    background: #092f6c;
}

/* Print Optimization */
@media print {
    header, footer, .download-btn {
        display: none;
    }

    body {
        background: #fff;
    }

    .resume {
        padding: 0;
    }

    .resume-section {
        page-break-inside: avoid;
    }
}
