body {
    font-family: sans-serif;
    margin: 0;
    background: #f9f9f9;
    color: #333;
}

/* Navigation */
nav {
    background: #222;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1rem;
}

nav a:hover {
    text-decoration: underline;
}

/* Main content */
.container {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
    padding: 20px;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}