* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text-color: #111111;
    --link-color: #111111;
    --link-hover-color: #0052a3;
    --bg-color: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

/* Top layout: name/links left, photo right */
.top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.top-left {
    display: flex;
    flex-direction: column;
    gap: 0px;  
}

.name {
    font-size: 2 rem;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.links a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.links a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

.top-right {
    flex-shrink: 0;
}

 .profile-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%; 
    object-fit: cover;
    border: 1px solid var(--border-color);
}

/* Main content text */
.content {
    font-size: 1rem;
    line-height: 1.8;
}

.content p {
    margin-bottom: 20px;
}

.content p:last-child {
    margin-bottom: 0;
}

.content strong {
    font-weight: 500;
}

.content a {
    color: var(--link-hover-color);
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

/* Greeting emphasis */
.greeting {
    font-size: 1.08rem;
    font-weight: 400;
}

.highlight {
    font-weight: 600;
    color: #0052a3; /* subtle accent */
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 32px 20px 56px;
    }

    .top {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 24px;
    }

    .name {
        font-size: 2.1rem;
    }

    .profile-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%; 
    object-fit: cover;
    border: 1px solid var(--border-color);
}

@media (max-width: 480px) {
    .name {
        font-size: 1.9rem;
    }

    .links a {
        font-size: 0.95rem;
    }
}
