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

html {
    background: #fafafa;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
    font-size: 16px;
}

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

header {
    margin-top: 1in;
    text-align: center;
}

h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    margin-bottom: 24px;
}

.header-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.header-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: all 0.2s ease;
}

.header-links a:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.bio {
    font-size: 18px;
    color: #444;
    margin-top: 20px 0;
    margin-bottom: 20px 0;
    border-left-width: 2px;
    border-left-style: solid;
    border-left-color: #444;
    padding-left: 20px;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 48px 0;
}

.skill {
    background: #fff;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    color: #555;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.skill:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.experience {
    margin: 10px 0;
}

.experience h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    text-align: center;
    color: #1a1a1a;
}

.job {
    background: #fff;
    padding: 24px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    display: flex;
    gap: 20px;
}

.job-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
}

.job-content {
    flex: 1;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.job-title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.company {
    font-size: 16px;
    color: #666;
}

.job-period {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

.job-description {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-top: 12px;
}

.projects {
    margin: 10px 0;
}

.projects h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    text-align: center;
    color: #1a1a1a;
}

.project {
    background: #fff;
    padding: 24px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    display: flex;
    gap: 20px;
    color: inherit; /* To remove link styling */
    text-decoration: inherit; /* To remove link styling */
}

.project:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.project-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
}

.project-content {
    flex: 1;
}

.project h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.project p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.contact {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
}

.contact a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.contact a:hover {
    border-bottom-color: #1a1a1a;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .bio {
        font-size: 16px;
    }
    
    .header-links {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .header-links a {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-period {
        margin-top: 4px;
    }
    
    .job {
        flex-direction: column;
    }
    
    .job-image {
        width: 60px;
        height: 60px;
    }
    
    .project {
        flex-direction: column;
    }
    
    .project-image {
        width: 100%;
        height: 180px;
    }
    
    .contact {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}