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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
    padding: 20px;
}

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

header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #2c3e50;
    margin-bottom: 30px;
}

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

.contact-info {
    font-size: 0.95em;
    color: #555;
    margin-top: 10px;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
    margin: 0 8px;
}

.contact-info a:hover {
    text-decoration: underline;
}

h2 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
}

.job, .education-item {
    margin-bottom: 25px;
}

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

.company {
    font-weight: bold;
    font-size: 1.1em;
    color: #2c3e50;
}

.date {
    color: #7f8c8d;
    font-style: italic;
    font-size: 0.95em;
}

.position {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

ul {
    margin-left: 20px;
    margin-top: 10px;
}

li {
    margin-bottom: 8px;
    color: #444;
}

.education-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.degree {
    font-weight: bold;
    color: #2c3e50;
}

.school {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 3px;
}

.skills-section {
    margin-top: 20px;
}

.skills-section p {
    margin-bottom: 8px;
    line-height: 1.8;
}

.skill-label {
    font-weight: bold;
    color: #2c3e50;
    display: inline-block;
    min-width: 100px;
}

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

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    h1 {
        font-size: 2em;
    }
    .job-header, .education-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .date {
        margin-top: 5px;
    }
}