:root {
    --primary-color: #333;
    --secondary-color: #666;
    --accent-color: #2c3e50;
    --border-color: #e0e0e0;
    --bg-color: #f4f4f4;
    --container-bg: #fff;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 20px;
}

.resume-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--container-bg);
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

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

.contact-info {
    margin-top: 10px;
    font-size: 0.9em;
    color: var(--secondary-color);
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0 5px;
}

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

section {
    margin-bottom: 25px;
}

h2 {
    font-size: 1.2em;
    color: var(--accent-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

.job-header,
.edu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
}

.job-title {
    font-weight: bold;
    font-size: 1.1em;
}

.company,
.school {
    font-weight: bold;
}

.location {
    font-style: italic;
    color: var(--secondary-color);
}

.dates {
    font-style: italic;
    color: var(--secondary-color);
    white-space: nowrap;
}

ul {
    margin-top: 5px;
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .resume-container {
        padding: 20px;
    }

    .job-header,
    .edu-header {
        flex-direction: column;
    }
}

#visitor-counter {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--secondary-color);
    font-size: 0.9em;
}

#count {
    font-weight: bold;
    color: var(--accent-color);
}
