* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

header {
    text-align: center;
    margin-bottom: 25px;
}

header h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

header p,
header a {
    font-size: 14px;
    color: #555;
}

section {
    margin-bottom: 20px;
}

h2 {
    color: #2c3e50;
    margin-bottom: 8px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

ul {
    margin: 10px 0 0 20px;
}

.project {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #0073e6;
}

a:hover {
    text-decoration: underline;
}