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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 3px solid #667eea;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.3em;
    color: #667eea;
    font-weight: 500;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.introduction p {
    margin-bottom: 15px;
    text-align: justify;
}

.job {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid #667eea;
}

.job h3 {
    color: #2c3e50;
    font-size: 1.3em;
    margin-bottom: 5px;
}

.company {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
}

.job ul {
    list-style-type: none;
    padding-left: 0;
}

.job ul li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.job ul li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.icon {
    width: 24px;
    height: 24px;
}

footer {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    color: #666;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    header h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }
}
