body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Profile */
.profile {
    display: flex;
    align-items: center;
    padding: 30px;
    background: white;
    margin: 20px;
    border-radius: 10px;
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
}

/* Sections */
section {
    margin: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
}

/* Skills */
.skills ul {
    list-style: none;
    padding: 0;
}

.skills li {
    background: #ddd;
    margin: 5px;
    padding: 10px;
    border-radius: 5px;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #222;
    color: white;
}