:root {
    --bg-dark: #0b1120;        /* Deep Space Blue */
    --card-bg: #111827;      /* Dark Grey/Blue */
    --azure-primary: #3b82f6; /* Bright Azure */
    --azure-glow: #60a5fa;    /* Lighter Azure for hover/accents */
    --text-main: #f8fafc;    /* Off-white */
    --text-muted: #94a3b8;   /* Slate Gray */
    --border: #1e293b;       /* Subtle border */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    padding: 3rem 1rem;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

header {
    border-bottom: 2px solid var(--azure-primary);
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
    text-align: left; /* Switched to left-aligned for a more modern feel */
}

h1 {
    margin: 0;
    font-size: 2.8rem;
    color: var(--azure-primary);
    letter-spacing: -1px;
}

.contact-info {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
}

.contact-info strong {
    color: var(--azure-glow);
}

.contact-info span { 
    margin-right: 20px; 
    display: inline-block;
}

a {
    color: var(--azure-glow);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    text-decoration: underline;
}

h2 {
    color: var(--azure-primary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 3rem;
    display: flex;
    align-items: center;
}

h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
    margin-left: 15px;
}

h3 { 
    margin-bottom: 0.2rem; 
    font-size: 1.4rem; 
    color: var(--text-main);
}

.company { 
    font-weight: 600; 
    color: var(--azure-glow); 
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.date { 
    font-weight: 400; 
    color: var(--text-muted); 
    font-size: 0.9rem;
}

h4 { 
    margin: 1.5rem 0 0.5rem 0; 
    color: var(--azure-glow); 
    font-size: 0.95rem; 
    font-weight: 600;
    text-transform: uppercase;
}

.job { 
    margin-bottom: 3.5rem; 
    padding-left: 10px;
    border-left: 1px solid var(--border);
}

ul { 
    padding-left: 1.2rem; 
    list-style-type: square;
}

li { 
    margin-bottom: 0.6rem; 
    font-size: 0.95rem; 
    color: #cbd5e1; /* Slightly softer white for long text */
}

footer {
    text-align: center;
    margin-top: 4rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

/* Responsive Fixes */
@media (max-width: 600px) {
    .job-header { 
        flex-direction: column; 
    }
    .container { 
        padding: 1.5rem; 
    }
    h1 { font-size: 2rem; }
}