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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #3d3d3d;
    background-color: #f5f1e8;
    padding: 40px 20px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fdfbf7;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

h1 {
    font-size: 2.5em;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 30px;
    text-align: center;
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 40px;
    display: block;
    object-fit: cover;
    border: 4px solid #f5f1e8;
}

.bio {
    font-size: 1.05em;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

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

.bio a {
    color: #2c7873;
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 1px solid transparent;
}

.bio a:hover {
    color: #1f5a56;
    border-bottom: 1px solid #2c7873;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e8e2d5;
}

.social-links a {
    color: #2c7873;
    text-decoration: none;
    font-size: 1.05em;
    transition: all 0.2s;
    padding: 8px 16px;
    border-radius: 4px;
}

.social-links a:hover {
    color: #1f5a56;
    background-color: #f5f1e8;
}

.contact {
    text-align: center;
    padding-top: 10px;
    margin-top: 10px;
}

.contact a {
    color: #2c7873;
    text-decoration: none;
    font-size: 1.05em;
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.2s;
}

.contact a:hover {
    color: #1f5a56;
    background-color: #f5f1e8;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #8a8a8a;
}

@media (max-width: 600px) {
    .container {
        padding: 40px 30px;
    }

    h1 {
        font-size: 2em;
    }

    .profile-photo {
        width: 150px;
        height: 150px;
    }

    .social-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}
