* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.logo {
      max-width: 70px;
      height: auto;
  }
  h1 {
      color: #2d2f31;
      font-size: 2.5em;
      margin-bottom: 30px;
      font-weight: 600;
  }
          
  h2 {
      color: #2d2f31;
      font-size: 1.5em;
      margin-top: 40px;
      margin-bottom: 20px;
      font-weight: 600;
  }
 ul {
      padding-left: 20px;
  }

li {
    margin-bottom: 10px;
}

.header {
  background-color: #2d2f31;
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer {
  background-color: #2d2f31;
  color: #fff;
  padding: 40px 20px;
  margin-top: auto;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 1;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
