/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  color: #FFFFFF;
  background-color: #003F7F;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 20px;
}

.logo {
  max-width: 200px;
  margin-bottom: 30px;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #FF6F00;
}

.desc {
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.contact a {
  color: #FF6F00;
  text-decoration: none;
  font-weight: bold;
}

footer {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  color: #4A4A4A;
  font-size: 0.9rem;
}