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

body {
    background-color: #ffffff;
    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;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    background-color: #163d75;
    padding: 12px 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: "Roboto", serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.hero {
    background-color: #ffffff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: calc(100vh - 130px);
}

.hero-content {
    text-align: center;
    padding: 60px 20px;
}

.hero .profile-picture {
    width: 300px;
    height: 300px;
    margin: 0 auto 24px;
}

.hero .profile-picture img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1d539f;
    margin: 0 0 8px;
}

.tagline {
    font-size: 18px;
    color: #3F3F46;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}