/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Heavy';
    font-size: 2vw;
    color: #000000;
    scroll-behavior: smooth;
  }
  
  header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #333;
    color: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
  
  header .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  header ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  header ul li {
    margin-left: 20px;
  }
  
  header ul li a {
    color: #ffffff;
    text-decoration: none;
  }
  
  /* Parallax Sections */
  .parallax {
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  #home {
    background-image: url('https://wallpapercave.com/wp/wp6944106.jpg');
  }
  
  #about {
    background-image: url('https://wallpapercave.com/wp/wp6056738.jpg');
  }
  
  #services {
    background-image: url('https://wallpapercave.com/wp/wp11178175.png');
  }
  
  #contact {
    background-image: url('https://wallpapercave.com/wp/wp6944106.jpg');
  }
  
  /* Login Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    text-align: center;
    color: #333;
  }
  
  .close {
    float: right;
    cursor: pointer;
  }
  
  /* Codes of Conduct Page */
  #conduct {
    padding: 50px 20px;
    text-align: center;
    color: #333;
  }
  
  #conduct ol {
    text-align: left;
    display: inline-block;
  }
