body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

header h1 {
    font-size: 2.8em;
    color: #111;
    margin: 0;
    font-weight: 600;
}

header h2 {
    font-size: 1.3em;
    color: #555;
    margin: 5px 0 15px;
    font-weight: 300;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-size: 0.95em;
}

.contact-info p {
    margin: 0;
}

.contact-info a {
    text-decoration: none;
    color: #4a90e2; /* A touch of pastel blue */
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #357abd;
}

main h3 {
    font-size: 1.6em;
    color: #222;
    border-bottom: 2px solid #a0c4ff; /* Pastel blue accent */
    padding-bottom: 8px;
    margin-top: 0;
    margin-bottom: 20px;
}

section {
    margin-bottom: 30px;
}

.job {
    margin-bottom: 25px;
}

.job h4 {
    font-size: 1.2em;
    color: #333;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.job h4 span {
    font-weight: normal;
    font-style: italic;
    color: #777;
    font-size: 0.9em;
}

.job h5 {
    font-size: 1.05em;
    color: #555;
    margin: 4px 0 10px;
    font-weight: 500;
}


ul {
    list-style-type: none;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    position: relative;
}

#work-experience ul li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: #a0c4ff; /* Pastel blue accent */
}

#tech-expertise ul, #languages ul {
    padding-left: 0;
}

#tech-expertise li, #languages li {
    padding-left: 20px;
}

#tech-expertise li::before, #languages li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #a0c4ff; /* Pastel blue accent */
    font-weight: bold;
}