body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #333;
    color: #fff;
  }
  
  .navbar {
    display: flex;
    align-items: center;
    background-color: #222;
    padding: 20px;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
  }
  
  .navbar-item {
    margin-right: 20px;
  }
  
  .navbar-item a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .navbar-item a:hover {
    color: #fdca53;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    color: #fdca53;
    background-color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    color: #fdca53;
    background-color: black;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .hero-section {
    text-align: center;
    padding: 50px;
  }
  
  .hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hero-section p {
    font-size: 24px;
  }

  footer {
    text-align: center;
    background-color: #222;
    padding: 20px;
  }
  
  footer p {
    font-size: 14px;
    color: #fff;
  }

  .button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  
  .page-button {
    display: inline-block;
    background-color: #fdca53;
    color: #111;
    padding: 12px 20px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease-in-out;
  }
  
  .page-button:hover {
    background-color: #f6b93b;
  }

  .space {
    height: 10px;
  }