body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.6;
}

.header {
  background-color: #ffffff;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #b5002a;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #444;
  font-weight: bold;
  font-size: 14px;
  padding-bottom: 4px;
}

.nav a.active,
.nav a:hover {
  color: #b5002a;
  border-bottom: 2px solid #b5002a;
}

.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.subtitle {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 5px;
  border-left: 3px solid #b5002a;
  padding-left: 10px;
}

.title {
  font-size: 32px;
  margin: 0 0 20px;
  font-weight: bold;
}

.highlight {
  color: #b5002a;
}

.footer {
  background-color: #fafafa;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #777;
  margin-top: 60px;
}
