@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

#site-header {
  background: #2158A1;
  color: #fff;
  padding: 20px 80px 20px 60px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title a {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color : #ffff;
  text-decoration: none;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.site-nav a.button {
  outline: none;       
  box-shadow: none;    
}

.site-nav a.button:focus {
  outline: none;
  box-shadow: none;
}


.site-nav a:hover {
  text-decoration: none;
}

.site-title-wrapper {
  display: flex;
  align-items: center; 
}

.logo {
  width: 70px;
  height: 70px;
  margin-right: 5px;
}

.site-title-wrapper a.site-logo-link {
  border: none;
  text-decoration: none;
  box-shadow: none;
  outline: none;
}

.site-title-wrapper a.site-logo-link img {
  border: none;
  outline: none;
}

.site-nav a.button {
  display: inline-block;
  background-color: #2158A1; 
  color: #fff;
  padding: 12px 24px; 
  border-radius: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  transition: background-color 0.4s ease-in-out; 
}

.site-nav a.button:hover {
  background-color: #1a4580; 
}

.site-nav li {
  list-style: none;
}