body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
nav {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: #333;
}

/* Main Content */
main {
    padding: 2rem 0;
}

.center-content {
    text-align: center;
    padding: 4rem 0;
}

.logo {
    max-width: 33%;
    height: auto;
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
        width: 90%;
    }

    .logo {
        max-width: 90%;
    }
}

/* Footer */
footer {
    background: #36467D;
    color: white;
    padding: 1rem 0 100px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.homepage-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 1.5em;
    margin: 0;
}

address {
    margin: 2rem 0;
    font-style: normal;
    line-height: 1.5;
}