body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  color: #0a1f44;
  background-color: #ffffff;
}

header {
  background-color: #0a1f44;
  color: #ffffff;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 15px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  display: flex;
  justify-content: space-evenly;

  padding: 50px;
  background-color: #f8f8f8;

  img {
    width: 150px;
    border-radius: 50%;
  }
}

.apropos {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 50px;
  background-color: #e6e6e6;

  img {
    width: 200px;
    border-radius: 50%;
  }
}

.btn {
  background-color: #c9a14a;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;

  img {
    width: 300px;
    border-radius: 10px;
  }
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f0f0f0;
  padding: 40px;
}

footer {
  background-color: #0a1f44;
  color: #ffffff;
  text-align: center;
  padding: 20px;
}
