:root {
    --border-bottom: #ddd;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.container {
    max-width: 800px;
    background: #fff;
    margin: 30px auto;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    margin-bottom: 10px;
    color: #333;
}

p {
    line-height: 1.5;
}

.header {
    text-align: center;
    border-bottom: 2px solid var(--border-bottom);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.section {
    margin-bottom: 20px;
}

.section h2 {
    font-size: 20px;
    border-bottom: 1px solid var(--border-bottom);
    padding-bottom: 5px;
    margin-bottom: 10px;
}

ul {
    padding-left: 1em;
}

ul li {
    line-height: 1.5;
}

.contact {
    font-size: 14px;
    color: #555;
}

.contact a {
    color: #555;
}

.skills span {
    display: inline-block;
    background: #eee;
    padding: 5px 10px;
    margin: 3px;
    border-radius: 5px;
    font-size: 14px;
}