/* Basic styles */
body {
    background-color: #0c0c11;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    margin: 0;
    padding: 0;
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-text {
    font-weight: bold;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
}

.nav-link {
    margin-left: 1.5rem;
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #a0a0a0;
    max-width: 600px;
}

/* Footer */
.footer {
    background-color: #0c0c17;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}