body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f4f8fb;
  color: #222;
}

header.navbar {
  background-color: #001f3f;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  height: 80px;
}

nav a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffffff;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  color: #001f3f;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 2em;
  color: #001f3f;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
}

.button {
  display: inline-block;
  margin-top: 20px;
  background-color: #001f3f;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #001733;
}

.description {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1em;
  line-height: 1.6;
}

.services-list ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 40px;
}

.services-list ul li {
  background-color: #f4f8fb;
  border-left: 5px solid #001f3f;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  line-height: 1.6;
}

.contact-info ul {
  list-style-type: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.1em;
  line-height: 1.8;
}

.contact-info ul li {
  background: #f4f8fb;
  border-left: 4px solid #001f3f;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.about-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: left;
  line-height: 1.8;
  font-size: 1.1em;
  color: #333;
}

footer {
  background-color: #001f3f;
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9em;
  margin-top: 50px;
}