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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: white;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header {
    margin-bottom: 4rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.location {
    font-size: 1rem;
    color: #999;
    font-weight: 300;
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 1.5rem auto 0;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

main {
    background: transparent;
}

section {
    margin-bottom: 3rem;
}

section:last-child {
    margin-bottom: 0;
}

h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.about p, .contact p {
    font-size: 1.1rem;
    color: #444;
    font-weight: 300;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 400;
    transition: all 0.3s ease;
    min-width: 80px;
}

.contact-link:hover {
    transform: translateY(-4px);
    color: #3498db;
}

.contact-link:hover .icon {
    transform: scale(1.2);
}

.icon {
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.contact-link span:last-child {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    .contact-links {
        gap: 1.5rem;
    }
    
    .icon {
        font-size: 2.2rem;
    }
}