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

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

header {
  background-color: #b30000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  flex-wrap: wrap;
}

.logo img {
  max-height: 168px;
}

nav {
  flex-grow: 1;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links li {
  margin: 0 10px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
}

.nav-links a:hover {
  background-color: white;
  color: #b30000;
  border-radius: 5px;
}

.hero {
  padding: 50px;
  text-align: center;
  background-color: #f8f8f8;
}

footer {
  background-color: #b30000;
  color: white;
  text-align: center;
  padding: 15px;
  position: relative;
  bottom: 0;
  width: 100%;
}
