/* Reset and general styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 70px; /* Adjust for fixed navbar */
    background: url('background.jpg') no-repeat center center fixed; /* Set background image */
    background-size: cover; /* Ensure the image covers the entire page */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    
    
  }
  
  
  @media (max-width: 768px) {
    body {
      font-size: 16px;
    }
  }

  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Header (Fixed Navbar) */
  .header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
  }
  
  .navbar li {
    margin: 0 1rem;
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
  }
  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
  }
  
  /* Admin Contact Section */
  .admin-contact-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8); /* White with 80% opacity */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
 
  .admin-contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .admin-contact-section p {
    margin-bottom: 2rem;
    color: #666;
  }
  
  .admin-contact {
    text-align: left;
  }
  
  .admin-contact h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .admin-contact ul {
    list-style-type: none;
    padding: 0;
  }
  
  .admin-contact li {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .admin-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  
  .admin-contact a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .navbar ul {
      display: none;
      flex-direction: column;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .navbar ul.active {
      display: flex;
    }
  
    .admin-contact-section {
      padding: 1rem;
      margin: 3rem auto;
    }
  
    .admin-contact {
      padding: 0;
    }
  }
  
  