/* General Styling */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  color: #222;
  background: #f5f7fa;
}

/* Header */
header {
  background: #002b80;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 2em;
}

.logo {
  width: auto;
  height: auto;
  max-height: 100px;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

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

/* Hero Section */
#hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('images/hero-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

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

/* Content Sections */
.content {
  background: white;
  padding: 50px 20px;
  max-width: 900px;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

input, textarea, button {
  padding: 10px;
  font-size: 1em;
  border-radius: 4px;
  border: 1px solid #ccc;
}

button {
  background: #002b80;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #0044cc;
}

/* Footer */
footer {
  background: #001a4d;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}

