/* General Styles */
body {background-color: #98a0cf;
background-image: url(/images/ana_snow.gif);
}

body, html {
  margin: 0;
  padding: 20;
  font-family: 'Roboto';
  color: #333;
}

h2 {
  color: #002244;
  border-bottom: 3px solid #FFCC00;
  padding-bottom: 10px;
  margin-top: 0;
}

p, label {
  color: #333;
}

a {
  color: #FFCC00;
  text-decoration: none;
}

/* Navigation */
.fixed-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #002244;
  padding: 10px 0;
  z-index: 1000;
}

.fixed-nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.fixed-nav li {
  margin: 0 15px;
}

.fixed-nav a {
  color: #FFCC00;
  font-weight: bold;
  transition: color 0.3s ease;
}

.fixed-nav a:hover {
  color: #FFF;
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
}

.content-container, .flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.box-container {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
}

.box, .image-box {
  background-color: #004488;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  flex: 1;
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
}

input, textarea, button {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background-color: #FFCC00;
  color: #002244;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #FFA700;
}

/* Fixed Footer */
.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #002244;
  color: #FFF;
  text-align: center;
  padding: 10px 0;
  z-index: 1000;
  font-size: 0.9em;
  box-sizing: border-box;
}

.fixed-footer .footer-content p {
  margin: 0;
  color: #FFCC00;
}

.fixed-footer a {
  color: #FFCC00;
  text-decoration: none;
}

.fixed-footer a:hover {
  color: #FFA700;
}

/* Adjust body padding to avoid overlap with footer */
body {
  padding-bottom: 50px; /* Adjust if needed to prevent content from overlapping with the footer */
}
