.header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.profile-photo {
    width: 130px;        /* adjust if you want it smaller/larger */
    height: 130px;
    object-fit: cover;
    border-radius: 8px;  /* slight rounding; remove for square */
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background: #fafafa;
    color: #222;
    line-height: 1.6;
}

.container {
    max-width: 700px;
    margin: auto;
    padding: 40px 20px;
}

h1 {
    margin-bottom: 0;
    font-size: 2.3rem;
}

.tagline {
    margin-top: 0;
    font-size: 1.1rem;
    opacity: 0.75;
}

h2 {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

ul {
    padding-left: 20px;
}

a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 40px;
    font-size: 0.9rem;
    text-align: center;
}
