body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fffaf0;
    color: #333;
}

/* Navbar */
.navbar {
    background: #facc15;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-title {
    font-size: 20px;
    font-weight: bold;
    color: #78350f;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #78350f;
    font-weight: bold;
}

.nav-links a:hover {
    color: #b45309;
}

/* Footer */
.footer {
    background: #78350f;
    color: white;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 10%;
}

.footer-column {
    max-width: 400px;
}

.footer a {
    color: #fde68a;
    text-decoration: none;
}
