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

body {
    font-family: sans-serif;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 16px;
}

/* Header */
header {
    background-color: #000;
    color: #fff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header a,
.brand a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.brand {
    font-weight: bold;
    font-size: 1.1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
}

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

/* Hero Image Area */
.hero {
    width: 100%;
    height: 40vh; /* Adjust this value to make the banner taller or shorter */
    overflow: hidden;
    background-color: #333; /* Fallback color */
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Positions the image to focus on the eyes/glasses area like your screenshot */
    object-position: center 50%;
}

main {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    max-width: 960px;
}
main p {
    line-height: 1.5;
    margin-bottom: 1rem;
}

main ul {
    margin-top: 1rem;
    list-style: none;
    margin-bottom: 1rem;
}

main a {
    color: #000;
    text-decoration: underline;
}

main li {
    margin-bottom: 10px;
    margin-left: 2rem;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    margin-top: auto; /* Pushes footer to bottom if content is short */
}
