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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* Profile Section */
.profile {
    margin-bottom: 30px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #f5f5f5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 600;
}

h2 {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    width: 200px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.9;
}

.social-links .linkedin {
    background-color: #0077b5;
}

.social-links .github {
    background-color: #333;
}

.social-links .medium {
    background-color: #000000;
}

.social-links i {
    margin-right: 8px;
}

/* Footer */
footer {
    margin-top: 20px;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .social-links a {
        width: 180px;
    }
}