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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f5f5f5;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 12px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eef2f7;
}

h1 {
    color: #1a73e8;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.title {
    color: #5f6368;
    font-size: 1.2em;
}

h2 {
    color: #1a73e8;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #eef2f7;
    font-size: 1.5em;
}

section {
    margin-bottom: 35px;
}

.entry {
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.entry h3 {
    color: #202124;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.date {
    color: #5f6368;
    font-size: 0.95em;
    margin: 5px 0;
}

.role {
    font-weight: 600;
    color: #1a73e8;
    margin: 8px 0;
}

.tech {
    color: #1a73e8;
    font-size: 0.95em;
    margin: 8px 0;
    font-weight: 500;
}

.desc {
    color: #5f6368;
    font-size: 0.95em;
    margin: 8px 0;
}

ul {
    list-style-position: outside;
    margin-left: 20px;
    margin-top: 10px;
}

ul li {
    margin-bottom: 8px;
    color: #3c4043;
}

.skill-list {
    list-style: none;
    margin-left: 0;
}

.skill-list li {
    margin-bottom: 10px;
    padding-left: 5px;
}

a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #174ea6;
    text-decoration: underline;
}

.contact {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact p {
    margin: 8px 0;
    color: #3c4043;
}

@media print {
    body {
        background: white;
    }
    .container {
        margin: 0;
        padding: 20px;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .entry {
        padding: 10px;
    }
}
