body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background: #fff;
    color: #000;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    border-bottom: 1px solid #eee;
}
.logo {
    font-size: 1.4em;
    font-weight: bold;
}
nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
nav a.active, nav a:hover {
    color: #000;
    border-bottom: 2px solid #000;
}
.hero {
    text-align: center;
    padding: 120px 20px;
    max-width: 800px;
    margin: auto;
}
.hero h1 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.1em;
    color: #444;
}
.content {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #666;
}
.team-member {
    text-align: center;
    margin-top: 50px;
}
.team-member h2 {
    margin-bottom: 5px;
}
