body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0f1419;
    color: #ffffff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo img {
    height: 40px;
}

nav a {
    margin: 0 10px;
    color: #b0b0b0;
    text-decoration: none;
}

nav a:hover {
    color: #ffffff;
}

main {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

.page-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #0f1419;
    font-size: 0.9rem;
}

footer .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}
