* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0px;
}

header {
  background: #005a87;
  color: #fff;
  padding: 0px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

section {
  padding: 40px 0;
}

section.light {
  background-color: #eef6fb;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #005a87;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
}

footer {
  background: #003b5c;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}


.logo {
  width: 245px;
  height: auto;
  margin: 0;
}

.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}




.tagline {
    margin: 0px;
    margin-bottom: 0px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1.4rem;
    margin-top: 0px;
}


.branding {
  display: flex;
  flex-direction:row;
  align-items: center;
  text-align: center;
  gap: 10px; 
  margin-bottom: 0px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0; 
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover,
.nav-links a:focus {
  text-decoration: underline;
}

p {
  margin-top: 20px;
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 30px;
  display: none;
  background-color: #005a87;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

#backToTop:hover {
  background-color: #003b5c;
}


