/* Reset */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

body {
 font-family: Arial, sans-serif;
 background-color: #fff;
 color: #000;
 display: flex;
 align-items: center;
 justify-content: center;
 height: 100vh;
}

.container {
 max-width: 600px;
 padding: 20px;
}

h1 {
 font-size: 2em;
 margin-bottom: 10px;
 color: #000;
}

.position {
 font-size: 1.2em;
 margin-bottom: 20px;
 color: #555;
}

section {
 margin-bottom: 20px;
}

h2 {
 font-size: 1.5em;
 margin-bottom: 10px;
 color: #222;
}

p, ul {
 font-size: 1em;
 line-height: 1.5;
 color: #333;
}

ul {
 list-style-type: square;
 padding-left: 20px;
}

ul li {
 margin-bottom: 5px;
}
