body{
  font-family: Roboto, sans-serif;
  padding: 0;
  margin: 0;
}
.header{
  display: flex;
  align-items: center;
  padding: 5px 30px;
  justify-content: space-between;
  background-color: rgb(243, 248, 248);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200000;
}
h1{
  color: #041250;
  font-size: 27px;
  font-weight:bold;
  flex: 1;
  cursor:pointer;
}
.navigation{
  display: flex;
  gap:30px;
  flex:2;
}
.navigation p{
  color: rgb(80, 80, 80);
  font-size: 17px;
  transition: all 0.3s ease;
  cursor: pointer;
}.navigation p:hover{
  color: #082397;
}
.right-section{
  display: flex;
  align-items: center;
}
.quote-button{
  background-color: #d8b101;
  color: #041250;
  font-size:16px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  padding: 10px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.quote-button:hover{
  transform: scale(1.05);
  box-shadow: 0 4px 8px 8px rgba(0, 0, 0, 0.15);
}
.hamburger{
  display: none;
  font-size: 23px;
}

@media(max-width: 766px){
  .navigation{
    display: none;
  }
  .hamburger{
    display:block;
    font-size: 20px;
  }
}