body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header h2 {
    margin: 0;
    font-weight: normal;
    color: #ccc;
}

section {
    padding: 1.5rem;
    margin: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
}

#contact p, #summary p {
    margin: 0.5rem 0;
}

#contact a {
    color: #333;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

.job, .degree {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #ccc;
}

.job:last-child, .degree:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.job h4, .degree h4 {
    margin: 0 0 0.3rem 0;
    color: #555;
}

.company, .institution, .location, .dates {
    font-style: italic;
    color: #777;
    margin: 0.2rem 0;
    font-size: 0.9rem;
}

#experience ul, #skills ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
}

#experience ul li, #skills ul li {
    margin-bottom: 0.5rem;
}

footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #333;
    color: #fff;
    font-size: 0.9rem;
}

/* Basic responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    header h2 {
        font-size: 1.1rem;
    }
    section {
        margin: 0.5rem;
        padding: 1rem;
    }
} 