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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: white;
    color: #333;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #000;
}

h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
    color: #000;
}

p {
    margin-bottom: 20px;
    color: #333;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    margin-right: 20px;
}

.projects {
    margin: 20px 0;
}

.project {
    margin: 15px 0;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.project:last-child {
    border-bottom: none;
}

.project a {
    font-weight: 500;
}

.project p {
    margin: 5px 0 0 0;
    color: #666;
    font-size: 0.9rem;
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}
