* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #fafafa;
    color: #333;
}
.wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}
.logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: #2c3e50;
    margin-bottom: 10px;
}
.subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}
.nav {
    margin-bottom: 40px;
}
.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
}
.nav a:hover {
    text-decoration: underline;
}
.content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.content h1 {
    margin-bottom: 15px;
    color: #2c3e50;
}
.content p {
    line-height: 1.7;
    color: #555;
}
.contact {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #bdc3c7;
}
.contact a {
    color: #3498db;
    text-decoration: none;
}
