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

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #fffaf3;
    color: #333;
}

header {
    background-color: #8b0000;
    color: white;
}

.banner img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    display: block;
}

.navbar {
    background: #a30000;
    text-align: center;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 15px;
}

.navbar a:hover {
    background-color: #cc0000;
}

main {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #8b0000;
}

footer {
    background: #8b0000;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
}
