body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #002147;
    color: white;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    background: #003366;
    display: flex;
    justify-content: center;
}

nav ul li {
    padding: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav ul li a:hover {
    text-decoration: underline;
}

section {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    border-bottom: 2px solid #002147;
    padding-bottom: 5px;
}

.profile-image {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 10px auto;
}

footer {
    text-align: center;
    padding: 15px;
    background: #002147;
    color: white;
    margin-top: 20px;
}

