:root {
    --primary-color: #2c3e50;
    --accent-color: #e67e22;
    --text-color: #333;
    --bg-color: #f4f7f6;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-top: 8px solid var(--primary-color);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h1 {
    font-family: 'Orbitron', sans-serif; /* Similar a Nasalization */
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-color);
}

.subtitle {
    font-weight: 300;
    color: var(--accent-color);
    margin-top: 5px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.section-title {
    background: #f8f9fa;
    padding: 5px 15px;
    font-weight: bold;
    color: var(--primary-color);
    border-left: 5px solid var(--primary-color);
    margin: 25px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.grid-skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.job {
    margin-bottom: 20px;
}

.job h4 {
    margin-bottom: 5px;
    color: #444;
}

.date {
    font-weight: normal;
    font-size: 0.9rem;
    color: #777;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 600px) {
    header {
        flex-direction: column-reverse;
        text-align: center;
    }
    .grid-skills {
        grid-template-columns: 1fr;
    }
}