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

body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    line-height: 1.8;
    color: #2d2d2d;
    background: #fff;
    padding: 4rem 2rem;
    font-size: 15px;
}

.container {
    max-width: 720px;
    margin: 0 auto;
}

header { margin-bottom: 4rem; }
header h1 { font-size: 2.8rem; font-weight: 700; color: #111; letter-spacing: -1px; margin-bottom: 0.3rem; }
.contact { display: flex; gap: 1.5rem; align-items: center; color: #888; font-size: 0.9rem; }
.contact a { color: #888; text-decoration: none; border-bottom: 1px solid #ddd; }
.contact a:hover { color: #111; border-color: #111; }
.contact a[title="Email"], .contact a[title="LinkedIn"] { font-size: 1.2rem; border: none; }

section { margin-bottom: 3.5rem; }
h2 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2.5px; color: #999; margin-bottom: 1.5rem; font-weight: 600; }
h3 { color: #111; font-size: 1rem; font-weight: 600; }
h4 { color: #666; margin: 1.2rem 0 0.5rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

p { color: #444; max-width: 600px; }

.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.skill-category h3 { font-size: 0.85rem; color: #111; margin-bottom: 0.5rem; font-weight: 600; }
.skill-category ul { padding-left: 0; list-style: none; font-size: 0.88rem; color: #555; }
.skill-category li { margin-bottom: 0.4rem; padding-left: 1rem; position: relative; }
.skill-category li::before { content: '–'; position: absolute; left: 0; color: #ccc; }

.certs { list-style: none; }
.certs li { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid #f0f0f0; }
.certs li strong { font-weight: 500; color: #333; }
.year { color: #999; font-size: 0.85rem; }

.job { margin-bottom: 2.5rem; }
.job-header h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.location { font-weight: 400; color: #999; }
.roles { margin: 0.4rem 0 0.8rem; }
.role { display: flex; justify-content: space-between; padding: 0.15rem 0; }
.title { font-weight: 500; color: #333; font-size: 0.9rem; }
.dates { color: #999; font-size: 0.85rem; }
.job ul { padding-left: 0; list-style: none; font-size: 0.88rem; color: #555; }
.job li { margin-bottom: 0.4rem; padding-left: 1rem; position: relative; }
.job li::before { content: '–'; position: absolute; left: 0; color: #ccc; }

.education h3 { font-size: 1rem; }
.education p { color: #888; font-size: 0.9rem; }

footer { color: #ccc; font-size: 0.8rem; margin-top: 4rem; }

@media (max-width: 600px) {
    body { padding: 2rem 1.5rem; }
    header h1 { font-size: 2rem; }
    .skills-grid { grid-template-columns: 1fr; }
    .contact { flex-direction: column; gap: 0.3rem; }
    .role { flex-direction: column; }
}

@media print {
    body { padding: 0; }
}
