html {
    scroll-padding-top: 4rem;
}
body {
    background-color: #ffffff;
    color: #161512;
    align-items: center;
    justify-content: center;
}
h1, h2, h3, h4 {
    font-family:Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #111111;
}

/*header */
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #f8f8f8;
  height: auto;
}
header .logo {
    display: block;
    width: auto;
    height: 35px;
}
header .close {
    display: none;
}
header .pageNavigation {
    display: flex;
    align-items: top;
  }
.pageNavigation .pageList {
    display: flex;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
  }     
.pageNavigation .pageList  li a {
        text-decoration: none;
        color: #333;
      }
.pageNavigation .pageList     li a:hover {
        color: #1a73e8; 
        text-decoration: underline;
}    
header .iconbar{
  display: none;
} 
@media (max-width: 768px) {
header .pageNavigation{
        display: none;
    }
header .pageNavigation.show {
  display: flex;
  flex-direction: column;

}
header .pageNavigation .pageList{
  flex-direction: column;
}
header .iconbar{
  display: flex;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
header .iconbar.hidden{
  display: none;
}
header .logo.hidden{
    display: none;
}
header .close.show {
    display: block;
    width: 35px;
    height: 35px;
    cursor: pointer;
}
}

button {
    padding: 0.5rem 1.2rem;
    background: transparent;
    border: 1px solid #d1d5db; 
    color: #374151; 
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;

    &:hover {
        background: #f9fafb; 
        border-color: #9ca3af; 
    }
}


footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    background-color: #f9f9f9 ;
    color: #555555;
    padding: 1rem 1rem;
    border-top: 1px solid #2a2a3d;
}
.footer-logo {
    justify-self: start;
}
.footer-logo img {
    max-width: 5rem;
}
.footer-text{
    justify-self: center;
    color: #444444;
    text-align: center;
}
.footer-text h4 {
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-size: 1.1rem;
  color: #333;
}

.footer-text p {
  margin: 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}
.footer-links{
    justify-self: end;
    display: flex;
    flex-flow: column;
}
.footer-links a{
    text-decoration: none;
    padding: 0.5rem;
    color: #0077cc ;
}
.footer-links a:hover{
    color: #222222;
    font-size: 1.1rem;
}

