body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
    background-color: #f9f9f9;
}

header {
    border-bottom: 2px solid #3498db;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

h1, h2 {
    color: #2c3e50;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 25px;
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.skills-container {
    margin-top: 15px;
}

.skill-category {
    margin-bottom: 15px;
}

.skill-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill {
    background: #eef2f7;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    border-left: 3px solid #3498db;
}

.highlight {
    font-weight: bold;
    color: #2980b9;
}

.title-highlight {
    font-weight: bold;
    color: #2980b9;
    font-size: 1.2em;
}

footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

@media (max-width: 600px) {
    body {
        padding: 15px;
    }
}