/* Basic styles */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  color: white;
  /*text-align: center;*/
}

/* Header */
header {
  background-color: #001F3F;  /* Navy blue */
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1;
  text-align: center;
}

header a{
  color: white;
}

.logo {
  font-size: 2em;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline-block;
  margin-left: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
}

nav a:hover {
  background-color: #2F4F4F; /* Darker navy blue on hover */
  transition: background-color 0.3s ease;
}

.hero a, h1, p {
  /* color:white; */
  color: #001F3F;
}

/* Main content */
main {
  padding-bottom: 50px;
  color: #333;
}

section {
  margin-bottom: 50px;
}

h1, h2 {
  text-align: center;
  margin-bottom: 20px;
}

.hero {
  position: relative;
  text-align: center;
  z-index: 1;
  /* opacity: 0.3; Set the transparency level for the background image */
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-card {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.service-card img {
  width: 100px;
  margin-right: 20px;
}

.benefits ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefits li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  position: absolute;
  width: 100%;
  background-color: #001F3F;
  bottom: 0;
  color: #fff;
  padding: 5px 0;
  text-align: center;
}

footer p {
  margin-bottom: 5px;
  color: white;
}

