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

body {
    font-family: 'Times New Roman', serif;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    max-width: 8.5in;
    margin: 0 auto;
    padding: 0.75in;
    font-size: 11pt;
}

.header {
    text-align: center;
    margin-bottom: 0.3in;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.name {
    font-size: 18pt;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.contact-info {
    font-size: 10pt;
    line-height: 1.3;
}

.contact-info a {
    color: #000;
    text-decoration: none;
}

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

.section {
    margin-bottom: 0.25in;
}

.section-title {
    font-size: 12pt;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    border-bottom: 0.5px solid #000;
    padding-bottom: 2px;
}

.entry {
    margin-bottom: 12px;
}

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

.position-title {
    font-weight: bold;
}

.organization {
    font-style: italic;
}

.date-location {
    font-size: 10pt;
    text-align: right;
    white-space: nowrap;
}

.description {
    margin-left: 0.2in;
    margin-top: 3px;
}

.description ul {
    margin-left: 0.15in;
}

.description li {
    margin-bottom: 2px;
}

.gpa {
    font-style: italic;
    font-size: 10pt;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 10px;
    align-items: start;
}

.skill-category {
    font-weight: bold;
}

.skill-list {
    text-align: justify;
}

.honors-awards {
    margin-left: 0.2in;
}

.honors-awards .entry {
    margin-bottom: 6px;
}

/* Print styles */
@media print {
    body {
        padding: 0.5in;
        font-size: 10pt;
    }
    
    .section {
        margin-bottom: 0.2in;
    }
    
    .entry {
        page-break-inside: avoid;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        padding: 20px;
        font-size: 12pt;
    }
    
    .entry-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .date-location {
        text-align: left;
        margin-top: 2px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}