body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #1e1e1e;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: #003366;
}
ul {
  list-style: none;
  padding: 0;
}
header {
  background-color: #003366;
  color: white;
  padding: 10px 20px;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: gold;
}
nav ul {
  display: flex;
  gap: 20px;
}
nav ul li a {
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: gold;
}
.hero {
  background: #f4f4f4;
  text-align: center;
  padding: 60px 20px;
  border-bottom: 4px solid gold;
}
.hero h1 {
  color: #003366;
  font-size: 36px;
}
.hero p {
  font-size: 18px;
  color: #555;
}
main {
  padding: 40px 20px;
}
.page-header {
  text-align: center;
  margin-bottom: 30px;
}
.content h2 {
  color: #003366;
  margin-top: 20px;
}
.content ul li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
}
.content ul li::before {
  content: '•';
  color: gold;
  font-weight: bold;
  position: absolute;
  left: 0;
}
form {
  max-width: 500px;
  margin-top: 30px;
}
label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}
input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button {
  background-color: #003366;
  color: white;
  padding: 10px 20px;
  border: none;
  margin-top: 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
button:hover {
  background-color: gold;
  color: #003366;
}
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
