body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
    text-align: center;
}

header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 150px;
    border-bottom: #077bff 3px solid;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    padding-bottom: 10px;
}

header .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #077bff;
    margin-bottom: 15px;
}

.tagline {
    font-style: italic;
    font-size: 1.2em;
}

.contact-info {
    padding: 30px 0;
    background: #fff;
    border-bottom: #ddd 1px solid;
}

.contact-info h2 {
    color: #077bff;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

.contact-info ul li {
    background: #e7e7e7;
    margin-bottom: 10px;
    padding: 10px;
    border-left: #077bff 5px solid;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.contact-info a {
    color: #077bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links a {
    display: inline-block;
    background: #077bff;
    color: #fff;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
}

.social-links a:hover {
    background: #0567cc;
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
}