body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
.nav {
    background-color: #333;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
}
.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
.nav a:hover {
    text-decoration: underline;
}
.container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.profile-pic {
    border-radius: 50%;
    width: 150px;
    height: auto;
    max-width: 100%;
}
.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}
.profile {
    text-align: center;
    margin-right: 40px; /* Adds space between profile and bio */
}

.contact-info {
    margin-top: 10px;
    line-height: 1.4;
}

.contact-info a {
    color: #333;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}
.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}
