/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styles */
  body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    color: #333;
  }
  
  /* Header */
header {
  background-color: #222;
  padding: 20px;
  position: fixed;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.header-logo h1 {
  font-size: 24px;
  color: #fff;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ff4c4c;
}
  
  /* Information styles */
  .information {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  h1 {
    font-size: 48px;
    color: #000000;
  }
  
  .info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .info-box {
    background-color: rgba(35, 33, 33, 0.9);
    width: calc(33.33% - 40px);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .info-box:hover {
    transform: translateY(-5px);
  }
  
  .info-content {
    padding: 20px;
  }
  
  h2 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 16px;
    color: #e7e0e0;
    line-height: 1.5;
  }
  
 /* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
}
