* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.8;
    padding: 0;
    margin: 0;
}

.container {
    width: 60%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    font-weight: 700;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
    color: #666;
}

.contact {
    text-align: center;
    margin-bottom: 40px;
}

.contact h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.contact a {
    color: #333;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.about {
    text-align: center;
    margin-bottom: 40px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 20px 0;
}

.about h2 {
    font-size: 1.8em;
    margin-top: 20px;
}

.work {
    margin-top: 60px;
}

.work h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.work ul {
    list-style-type: none;
    padding: 0;
}

.work li {
    margin-bottom: 40px;
}

.work li h3 {
    font-size: 1.4em;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 5px;
}

.project-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

.work p {
    text-align: left;
}

footer {
    text-align: center;
    margin-top: 60px;
    color: #666;
    font-size: 0.9em;
}
