/* General Styling */
body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
}

/* Header Styling */
header {
    background: #fff;
    color: #000;
    display: flex;
    justify-content: space-between;
    /* Title left, links right */
    align-items: center;
    padding: 10px 30px;
    border-bottom: 1px solid #ddd;
}

header h1 {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    margin: 0;
}

header nav {
    display: flex;
    gap: 20px;
}

header nav a {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
}

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

/* Main Content */
main {
    display: flex;
    justify-content: center;
    margin: 40px auto;
    padding: 20px;
    max-width: 1000px;
    text-align: left;
}

.content-container {
    flex: 2;
    /* Text content */
    padding-right: 30px;
}

.profile-img {
    width: 200px;
    /* Set width */
    height: 200px;
    /* Set height to match width */
    border-radius: 50%;
    /* Makes the image circular */
    object-fit: cover;
    /* Ensures the image doesn't distort */
    display: block;
    margin: 20px auto;
}

/* Heading Styling */
h2,
h3 {
    font-family: Georgia, serif;
    font-size: 1.6rem;
    font-weight: normal;
    margin-bottom: 10px;
}

/* Footer Styling */
footer {
    background: #fff;
    color: #000;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

footer p {
    font-size: 0.9rem;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.social-links li {
    display: inline;
    margin: 0 10px;
}

.social-links a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.social-links a:hover {
    text-decoration: underline;
}