/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F7EBCD;
}

/* Header */
header {
    background: #E4BA4F;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

header nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 15px;
}

/* Footer */
#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}
footer {
    background: #E4BA4F;
    color: white;
    position: absolute;
    width: 100%;
    height: 2.5rem;
    bottom: 0;
    text-align: center;
    padding: 1rem 0;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 600px) {
    header nav {
        display: flex;
        flex-direction: column;
    }

    header nav a {
        margin: 5px 0;
    }
}