/* Classic Theme Styling */
:root {
    --primary-color: #2c3e50; /* Navy Blue */
    --accent-color: #e74c3c;  /* Soft Red */
    --text-color: #333;
    --bg-color: #f4f4f4;
    --section-bg: #ffffff;
}

body {
    font-family: 'Georgia', serif; /* Classic Serif Font */
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--section-bg);
    padding: 50px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-top: 8px solid var(--primary-color);
}

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

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2em;
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 5px;
}

.contact-info {
    margin-top: 15px;
    font-family: 'Arial', sans-serif;
    font-size: 0.9em;
}

.contact-info span {
    margin: 0 10px;
}

h2 {
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1.1em;
    margin-top: 30px;
    padding-bottom: 5px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.job-header h3 {
    margin: 0;
    color: #444;
}

.job-title {
    font-style: italic;
    color: #666;
    margin: 0 0 10px 0;
}

.date {
    font-size: 0.9em;
    color: #888;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.skill-category h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.skill-category p {
    font-family: 'Arial', sans-serif;
    font-size: 0.95em;
    margin: 0;
}

.two-column {
    display: flex;
    gap: 40px;
}

.two-column section {
    flex: 1;
}

@media (max-width: 600px) {
    .container { padding: 20px; }
    .job-header { flex-direction: column; align-items: flex-start; }
    .skills-grid, .two-column { grid-template-columns: 1fr; flex-direction: column; }
}
