p, h1, h2, h3, h4, h5, h6, button {
    font-family: "Roboto", serif;
}

body {
    background-color: #f5f5f9;
    background-size: cover;
    width: auto; 
    overflow-x: hidden;
    font-family: "Roboto", serif;
    margin: 0px;
}

.nav-bar {
    width: 100%;
    display: inline-block;
    background-color: #1C539F;
    font-family: "Roboto", serif;
    font-weight: 700 !important;
    padding-top: 10px;
}

.nav-content .logo-touch-target {
    display: inline-flex;
    height: 60%;
    width: 350px;
}

.nav-content .nav-logo {
    height: 60px;
    margin: auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo img {
    width: 200px;
}

.nav-content nav {
    display: block;
    width: 100%;
    text-align: right;
    padding-top: 0px;
    padding-right: 0px;
}

.profile {
    background-color: #1d539f !important;
    text-align: center;
    height: 320px;
    margin-bottom: 50px;
}

.profile h1 {
        font-size: 50px;
        font-weight: 700;
        color: white;
}

.profile img {
        border-radius: 50%;
        max-width: 100%;
        max-height: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;        
        padding: 20px;
}

.profile .profile-picture {
    margin-bottom: 30px;
    height: 200px;
}

.banner {
    padding: 20px 0px 50px 0px;
    height: 150px;
    background-color: #1d539f;
}

.banner .logo {
    max-width:180px;
    max-height:60px;
    width: auto;
    height: auto;
}

.banner .title {
    color: white;
    font-size: 50px;
    font-weight: 700;
}


/* navbar styling */

.nav-content nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    font-family: "Roboto", serif;
    font-weight: 700;
}

.nav-content nav a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.nav-content nav a.active {
    border-bottom: 3px solid white;
}

.page-content {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.about-section,
.list-section {
    background: white;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.about-section h2,
.list-section h2 {
    color: #1d539f;
    margin-top: 0;
}

.list-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.list-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.list-item h3 {
    margin: 0 0 8px;
}

.list-item .subtitle {
    margin: 0 0 4px;
    font-weight: 500;
}

.list-item .date {
    margin: 0 0 8px;
    color: #777;
    font-size: 0.9rem;
}

.list-item p {
    margin: 0;
    line-height: 1.5;
}

.about-section .contact {
    margin-top: 12px;
}

.about-section .contact a {
    color: #1d539f;
}