body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}
.header {
    background-color:  #00FFFF;
    padding: 20px 0;
    text-align: center;
    border-bottom: 2px solid #e9ecef;
}
.header h1 {
    color: #353935; 
    margin: 0;
    font-size: 2.5em;
}
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}
.personnel-list {
    list-style-type: none;
    padding: 0;
}
.personnel-item {
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}
.profile-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.profile-image {
    /* width: 150px;
    height: 150px;
    margin-right: 20px;
    background-color: #e0e0e0;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center; */
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid #3498db;
}
.profile-image svg {
    width: 60%;
    height: 60%;
    fill: #bdbdbd;
}
.profile-details h3 {
    color: #3498db;
    margin-bottom: 5px;
}
.profile-details p {
    margin: 5px 0;
}
.qualifications {
    list-style-type: none;
    padding-left: 0;
}
.qualifications li {
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}
.qualifications li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}