body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ecf0f1;
}

header {
    text-align: center;
    padding: 50px 20px;
    background: #1abc9c;
    border-bottom: 5px solid #16a085;
    color: #2c3e50;
}

header h1 {
    font-size: 3em;
    margin: 0;
}

.tagline {
    font-size: 1.2em;
    margin-top: 10px;
    font-style: italic;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
    border: 2px solid #16a085;
    border-radius: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
}

h2 {
    color: #1abc9c;
    text-align: center;
    border-bottom: 3px solid #16a085;
    display: inline-block;
    padding-bottom: 5px;
}

.project {
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 20px;
}

.project img {
    width: 151px;
    height: 151px;
    border: 3px solid #1abc9c;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.project p {
    font-size: 1.2em;
    max-width: 70%;
}

.contact a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 10px 20px;
    background: #16a085;
    color: #ecf0f1;
    border-top: 5px solid #1abc9c;
}