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

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

.container {
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header {
    background: #ffffff;
    color: #000;
    padding: 40px 40px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ccc;
    margin: 0 auto 20px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.header h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
    font-weight: 400;
    color: #000;
}

.header p {
    font-size: 1.1em;
    color: #666;
    font-weight: 300;
}

.content {
    padding: 40px;
}

.bio {
    margin-bottom: 40px;
    font-size: 1.1em;
    color: #333;
    text-align: left;
}

.bio p {
    margin-bottom: 1em;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.site-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 24px;
    transition: all 0.2s ease;
}

.site-card:hover {
    border-color: #999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.site-card h3 {
    color: #000;
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: 500;
}

.site-card p {
    color: #666;
    margin-bottom: 16px;
    font-size: 0.95em;
}

.site-card a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
}

.site-card a:hover {
    text-decoration: underline;
}

.contact {
    text-align: center;
    padding: 24px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-top: 20px;
}

.contact h3 {
    color: #000;
    margin-bottom: 16px;
    font-size: 1.2em;
    font-weight: 500;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-links a {
    color: #0066cc;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: white;
    font-weight: 500;
    transition: all 0.2s ease;
}

.contact-links a:hover {
    border-color: #0066cc;
    background: #f0f8ff;
}

@media (max-width: 768px) {
    .header {
        padding: 30px 20px;
    }
    
    .header h1 {
        font-size: 1.8em;
    }
    
    .content {
        padding: 30px 20px;
    }
    
    .sites-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
}