/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff; /* White background */
  color: #1a1a1a; /* Very dark text */
  line-height: 1.6;
}

header {
  background-color: #003f6b; /* Darker blue */
  color: #ffffff; /* White text */
  padding: 20px 0;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  background-color: #fafafa; /* Very light gray */
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

nav a {
  color: #002a48; /* Much darker blue */
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
  color: #001f36; /* Darker hover color */
}

section {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero {
  text-align: center;
}

.hero h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1em;
  color: #ffffff;
  background-color: #003f6b;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #002a48;
}

.email-signup {
  text-align: center;
  margin-top: 20px;
}

.email-signup input[type="email"] {
  width: 80%;
  max-width: 400px;
  padding: 10px;
  font-size: 1em;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.email-signup input[type="submit"] {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #003f6b;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.email-signup input[type="submit"]:hover {
  background-color: #002a48;
}

.success-message {
  color: green;
  margin-top: 10px;
}

.error-message {
  color: red;
  margin-top: 10px;
}

footer {
  text-align: center;
  margin-top: 20px;
  padding: 10px 0;
  background-color: #003f6b;
  color: #ffffff;
}

footer a {
  color: #cce7ff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  margin: 0 5px;
  display: inline-block;
  width: 24px;
  height: 24px;
}

.social-icons a svg {
  fill: #cce7ff;
  width: 24px;
  height: 24px;
}

.social-icons a:hover svg {
  fill: #ffffff;
}
