body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8; /* A very light, cool gray */
    color: #333;
    line-height: 1.6;
}

.main-header {
    background-color: #ffffff;
    padding: 2rem 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 2px solid #5a8e9e; /* Teal border */
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-pic {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4a90e2; /* Blue border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
    object-position: 70% 10%;
}

.header-title {
    font-size: 1.8rem;
    color: #2b7a78; /* Teal color */
    margin: 0;
    font-weight: 500;
}

.main-nav {
    background-color: #1a535c; /* Dark teal/blue */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav li a {
    display: block;
    padding: 1rem 1.5rem;
    color: #e8f1f5;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav li a:hover,
.main-nav li a:focus {
    background-color: #4a90e2; /* Blue hover effect */
    color: #ffffff;
}

.main-content {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.page-section {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-section h2 {
    color: #2b7a78; /* Teal color */
    border-bottom: 2px solid #a8dadc; /* Light teal line */
    padding-bottom: 0.5rem;
    margin-top: 0;
    font-size: 1.6rem;
}
.job-entry {
    margin-bottom: 2rem; /* Adds space between each job entry */
}

.job-entry h3 {
    margin-bottom: 0.5rem;
    color: #2b7a78; /* Matches your teal color from before */
}

.job-entry .dates {
    font-style: italic;
    color: #555;
    margin-top: 0;
    margin-bottom: 1rem;
}

.job-entry ul {
    list-style-type: disc; /* Use a standard bullet point style */
    padding-left: 20px;
}

.job-entry li {
    margin-bottom: 8px; /* Adds space between bullet points */
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(150, 150, 150, 0.75), rgba(0, 0, 0, 0));
    margin: 2rem 0; /* Adds space around the divider line */
}

.main-footer {
    text-align: center;
    padding: 1rem;
    background-color: #1a535c;
    color: #e8f1f5;
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        text-align: left;
    }
    .profile-pic {
        margin-right: 2rem;
        margin-bottom: 0;
    }
}