/* Basic Reset & Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px auto;
    padding: 0 20px;
    max-width: 900px; /* Constrain width for better readability */
    background-color: #f4f4f4;
    color: #333;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: #fff;
}

/* Header Styles */
header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
    margin-bottom: 30px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #0056b3;
}

header .subtitle {
    margin: 5px 0 0;
    font-size: 1.1em;
    color: #555;
}

/* Section Styles */
.section-content {
    margin-bottom: 30px;
}

.section-content h2 {
    font-size: 1.8em;
    color: #0056b3;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Job Entry Styles */
.job-entry {
    margin-bottom: 20px;
}

.job-entry h3 {
    font-size: 1.3em;
    margin-bottom: 5px;
    color: #333;
}

.job-company {
    font-weight: normal;
    font-style: italic;
    color: #666;
}

.job-location {
    font-size: 0.95em;
    color: #777;
    margin-bottom: 10px;
}

.job-dates {
    font-weight: bold;
    color: #555;
}

/* List Styles (for experience, education, skills) */
ul {
    list-style-type: disc;
    margin-left: 20px;
    padding: 0;
}

ul li {
    margin-bottom: 8px;
}

/* Footer Styles */
.section-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.9em;
    color: #888;
}

/* Responsive Design (basic) */
@media (max-width: 600px) {
    body {
        margin: 10px;
        padding: 0 10px;
    }
    header h1 {
        font-size: 2em;
    }
    .section-content h2 {
        font-size: 1.5em;
    }
}