* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    line-height: 1.6;
    min-height: 100vh;
}

.nav-header {
    position: absolute;
    top: 20px;
    right: 40px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: normal;
}

.nav-link:hover {
    text-decoration: underline;
}

.nav-separator {
    color: #000000;
    font-size: 14px;
}

.search-icon {
    color: #000000;
    font-size: 18px;
    margin-left: 4px;
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    color: #003366;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
}

.underline {
    width: 120px;
    height: 3px;
    background-color: #003366;
    margin: 0 auto 40px;
}

.content-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
}

.profile-section {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.profile-picture {
    width: 280px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
    object-fit: cover;
}

.contact-info {
    font-size: 14px;
    line-height: 1.8;
}

.contact-item {
    margin-bottom: 8px;
}

.contact-item strong {
    font-weight: bold;
    color: #000000;
}

.contact-link {
    color: #000000;
    text-decoration: underline;
}

.contact-link:hover {
    color: #003366;
}

.contact-address {
    color: #000000;
    font-size: 14px;
    margin-top: 8px;
}

.bio-section {
    flex: 1;
    padding-top: 0;
}

.welcome-text {
    font-size: 18px;
    font-weight: normal;
    color: #000000;
    margin-bottom: 16px;
}

.bio-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 16px;
}

.bio-link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.bio-link:hover {
    color: #004488;
}

.cv-link {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
        align-items: center;
    }
    
    .bio-section {
        text-align: center;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .nav-header {
        position: relative;
        top: 0;
        right: 0;
        padding: 20px;
        text-align: right;
    }
}
