:root {
    --primary-color: #1e293b;
    --accent-color: #000000;
    --text-main: #334155;
    --text-light: #0f0f0f;
    --bg-color: #485746;
    --card-bg: #fff;
    --border-color: #e2e8f0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-color);
    margin: 0;
    padding: 2rem 1rem;
}

a.resume {
    color: #3498db;
    text-transform: uppercase;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Header Styles */
.header {
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.header h1 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.025em;
}

.header h2 {
    font-size: 1.15rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.contact-info {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

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

/* Section Styles */
.section {
    margin-bottom: 2rem;
}

.section h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.35rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section p {
    margin: 0;
    font-size: 0.95rem;
}

/* Toolkit & Lists */
.toolkit-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.toolkit-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Job & Education Items */
.job-item {
    margin-bottom: 1.5rem;
}

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

.job-title-row, .job-role-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.job-title-row h4 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin: 0;
}

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

.job-role-row {
    margin-bottom: 0.5rem;
}

.role {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.job-dates {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.job-item ul {
    margin: 0.5rem 0 0 1.25rem;
    padding: 0;
}

.job-item li {
    font-size: 0.92rem;
    margin-bottom: 0.35rem;
}

.education-item h4 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin: 0 0 0.25rem 0;
}

.education-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Highlight Section for Live Architecture Case Study */
.highlight-section {
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-section h3 {
    color: #0369a1;
    border-bottom-color: #7dd3fc;
    margin-top: 0;
}

.highlight-section p {
    margin-bottom: 0.75rem;
}

.architecture-list {
    margin-top: 0.75rem;
}

.architecture-list li {
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
}

.architecture-list code {
    background-color: #e0f2fe;
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.88rem;
}

/* Responsive design adjustments */
@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }

    .job-title-row, .job-role-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-location, .job-dates {
        margin-top: 0.1rem;
    }
}