/* General Layout */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #f4f7fa;
  color: #333;
}

/* Header and Footer */
header, footer {
  background: #003366; /* dark blue */
  color: white;
  text-align: center;
  padding: 15px 10px;
}

/* Navigation Bar */
nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
}
nav a:hover {
  color: #66B2FF; /* lighter blue hover */
}

/* Main Content */
main {
  padding: 20px;
  text-align: center;
}

/* Forms */
form {
  width: 320px;
  margin: 40px auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Inputs, Select, Buttons */
input, select, button {
  margin: 8px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

/* Buttons */
button {
  background: #007BFF; /* bright blue */
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}
button:hover {
  background: #0056b3; /* darker blue on hover */
}

/* Footer stays at bottom */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 14px;
}

/* Headings */
h1, h2, h3 {
  color: #003366;
}

/* About Us Image */
img {
  border: 3px solid #007BFF;
  border-radius: 50%;
  margin-bottom: 10px;
}

header h1 { color: white; }
