/* Main layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styling */
.site-header {
    text-align: center;
    margin-bottom: 40px;
}

.site-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.site-header h2 {
    font-size: 1.8em;
    color: black;
}

/* Navigation */
nav {
    text-align: center;
    margin: 20px 0;
    padding: 10px 0;
    border-bottom: 1px solid black;
}

nav a {
    margin: 0 15px;
    color: black;
    text-decoration: none;
}

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

/* Profile section */
.profile-section {
    text-align: center;
    margin: 30px 0;
}

.profile-section img {
    max-width: none; /* Ensure no max-width constraint */
    border-radius: 50%;
    margin: 20px auto;
    display: block;
}

.profile-photo {
    border-radius: 50%;
    width: 300px; /* Increase size */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto 20px;
}

/* Content sections */
.content-section {
    margin: 40px 0;
    text-align: center;
}

.content-section h2 {
    color: black;
    border-bottom: 1px solid black;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid black;
}