* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sage-green: #4a5d4f;
    --dark-sage: #3a4a3d;
    --cream: #f8f6f1;
    --off-white: #fdfcfa;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--off-white);
    color: var(--dark-sage);
    height: 100vh;
    overflow: hidden;
}

.landing {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 60px 40px 40px;
}

/* Logo Section */
.logo-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    max-width: 500px;
    width: 90%;
    height: auto;
    opacity: 0.95;
}

/* Bottom Navigation */
.bottom-nav {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.nav-link {
    color: var(--dark-sage);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--sage-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--sage-green);
}

.nav-link:hover::after {
    width: 100%;
}

/* Legal Footer */
.legal {
    text-align: center;
    max-width: 900px;
    margin-top: 20px;
}

.legal p {
    font-size: 11px;
    line-height: 1.5;
    color: #6d6d6d;
    margin-bottom: 10px;
}

.copyright {
    font-size: 10px;
    letter-spacing: 1px;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing {
        padding: 40px 20px 30px;
    }

    .main-logo {
        max-width: 350px;
    }

    .bottom-nav {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        margin-bottom: 30px;
    }

    .nav-link {
        font-size: 14px;
    }

    .legal p {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 280px;
    }

    .bottom-nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}
