:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333;
    --light-text-color: #7f8c8d;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --border-radius: 8px;
    --spacing-unit: 1rem;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--card-bg);
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info {
    font-size: 0.95rem;
    color: var(--light-text-color);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.contact-info span:not(:last-child)::after {
    content: "|";
    margin-left: 15px;
    color: #ccc;
    display: inline-block;
}

@media (max-width: 600px) {
    .contact-info span:not(:last-child)::after {
        display: none;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
}

/* Sections */
.section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.section-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Job/Education Entries */
.job-entry {
    margin-bottom: 2rem;
}

.job-entry:last-child {
    margin-bottom: 0;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.job-company {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.job-title {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
}

.job-meta {
    text-align: right;
    font-size: 0.9rem;
    color: var(--light-text-color);
}

.job-location,
.job-date {
    display: block;
}

.job-details {
    margin-left: 1.2rem;
    margin-top: 0.5rem;
}

.job-details li {
    margin-bottom: 0.3rem;
}

@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
    }

    .job-meta {
        text-align: left;
        margin-top: 0.5rem;
    }
}

/* Awards List */
.awards-list {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.awards-list li {
    background: #fdfdfd;
    padding: 0.8rem;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 0.95rem;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.skill-category h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--light-text-color);
    font-size: 0.9rem;
}