/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  header {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    text-align: left;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: 0;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .hamburger {
    font-size: 24px;
    cursor: pointer;
    display: inline-block;
  }
  
  .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: #333;
    border: 1px solid #444;
  }
  
  .menu li {
    padding: 10px 20px;
  }
  
  .menu a {
    color: #fff;
    text-decoration: none;
  }
  
  .menu-toggle:checked ~ .menu {
    display: block;
  }
  
  main {
    padding: 20px;
  }
  
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  