body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.section {
    margin-bottom: 30px;
    border-left: 4px solid #3182ce;
    padding-left: 20px;
}
h2 {
    color: #2c5282;
    font-size: 1.5em;
    margin-bottom: 10px;
}
h3 {
    color: #4299e1;
    font-size: 1.2em;
    margin-bottom: 5px;
}
.headshot-container {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #3182ce;
}
.headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.download-btn {
    background-color: #3182ce;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.download-btn:hover {
    background-color: #2c5282;
}
/* CV Download Section Styling */
.panel-tabset {
    margin: 20px 0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.panel-tabset .nav-tabs {
    background-color: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
}

.panel-tabset .nav-link {
    color: #4a5568;
    font-weight: 500;
}

.panel-tabset .nav-link.active {
    background-color: #3182ce;
    color: white;
    border-color: #3182ce;
}

.cv-download-item {
    background-color: #f8f9fa;
    padding: 15px;
    margin: 10px 0;
    border-radius: 6px;
    border-left: 4px solid #3182ce;
}

.cv-download-item h4 {
    margin-top: 0;
    color: #2d3748;
}

.cv-download-links {
    margin: 10px 0;
}

.cv-download-links a {
    display: inline-block;
    margin-right: 15px;
    padding: 8px 16px;
    background-color: #3182ce;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background-color 0.3s;
}

.cv-download-links a:hover {
    background-color: #2c5282;
    color: white;
    text-decoration: none;
}

.cv-description {
    font-style: italic;
    color: #718096;
    font-size: 0.9em;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .headshot-container {
        width: 100px;
        height: 100px;
    }
    
    .cv-download-links a {
        display: block;
        margin: 5px 0;
        text-align: center;
    }
}