/* --- Basic Setup --- */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* --- Main Container for Layout --- */
.container {
    display: flex; /* This creates the two-column layout */
    align-items: center; /* Vertically aligns the image and text */
    max-width: 800px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* --- Left Column: Profile Image Styling --- */
.profile-image {
    flex: 0 0 150px; /* Makes the image container a fixed width */
    margin-right: 40px;
}

.profile-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%; /* This makes the image circular */
}

/* --- Right Column: Content Styling --- */
.content h1 {
    margin-top: 0;
    font-size: 2.5em;
    color: #009B77;
}

.content h2 {
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 5px;
    margin-top: 20px;
}

/* --- Links Styling --- */
.links {
    margin-top: 30px;
}

.links a {
    text-decoration: none;
    color: #0073b1; /* A nice blue color for links */
    font-size: 1.2em;
    margin-right: 25px; /* Adds space between the links */
    transition: color 0.3s;
}

.links a:hover {
    color: #0056b3; /* Darker blue on hover */
}

.links i {
    margin-right: 8px; /* Adds space between the icon and the text */
}