    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }

    header {
      position: relative;
    }
    .hero-section {
      //position: absolute;
      //background-image: url('https://www.checkersac.org/Pictures/2025/Green/images/DLS09397%20(Copy).jpg'); /* Replace with your image URL */
      background-size: cover;
      background-position: center;
      height: 100vh;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
      z-index: 10; 
    }

    .hero-text {
      position: relative;
      //position: absolute;
      top: 20px;
      font-size: 4em;
      font-weight: bold;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
      z-index: 800; 
    }
    .banner {
      position: relative;
      width: 100%;
      height: 250px;
      background: url('/FreshPictures/Banner.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .banner-text {
      position: absolute;
      top: 20px;
      color: white;
      font-size: 2.5rem;
      font-weight: bold;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
      text-align: center;
      padding: 0 1rem;
    }
    
    .c3k_banner {
      position: relative;
      width: 100%;
      height: 250px;
      background: url('/FreshPictures/BannerC3K.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .c3k_banner-text {
      position: absolute;
      top: 20px;
      color: white;
      font-size: 2.5rem;
      font-weight: bold;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
      text-align: center;
      padding: 0 1rem;
    }
    nav {
      background-color: #333;
      padding: 10px 20px;
      display: flex;
      justify-content: right;
      z-index: 999; 
    }

    nav a {
      color: white;
      text-decoration: none;
      margin: 0 13px;
      font-size: 16px;
      padding: 8px 12px;
      border-radius: 5px;
      transition: background-color 0.3s;
    }

    nav a:hover {
      background-color: #555;
    }

    nav a.active {
      background-color: #28a745;
      color: white;
    }

    .logo {
      font-size: 1.2rem;
      font-weight: bold;
    }

    .menu {
      display: flex;
      list-style: none;
      gap: 1rem;
    }

    .menu li a {
      color: white;
      text-decoration: none;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger span {
      background: white;
      height: 3px;
      width: 25px;
    }

    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        background: #333;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
      }

      .menu.show {
        display: flex;
      }

      .hamburger {
        display: flex;
      }
    }
    .rounded-button {
      display: inline-block;
      padding: 12px 24px;
      font-size: 16px;
      color: white;
      background-color: #28a745; /* Green */
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: background-color 0.3s ease;
      margin: 20px; /* Adds white space around the button */
    }

    .rounded-button:hover {
      background-color: #218838;
    }
    
    .rounded-button-yellow {
      display: inline-block;
      padding: 12px 24px;
      font-size: 16px;
      color: black;
      background-color: yellow; /* Yellow */
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: background-color 0.3s ease;
      margin: 20px; /* Adds white space around the button */
    }

    .rounded-button-yellow:hover {
      background-color: orange;
    }
    
        .login-container {
      background-color: white;
      padding: 40px 30px;
      border-radius: 16px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      width: 100%;
      max-width: 400px;
    }

    .login-container h2 {
      text-align: center;
      margin-bottom: 30px;
      color: #333;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: #555;
      font-weight: 600;
    }

    .form-group input {
      width: 100%;
      padding: 12px 15px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 16px;
    }

    .form-group input:focus {
      border-color: #3498db;
      outline: none;
    }

    .login-button {
      width: 100%;
      padding: 12px;
      background-color: #3498db;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .login-button:hover {
      background-color: #2980b9;
    }
    #footer {
      color: white;
      background-color: #333;
  
    }    
    #cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 20px;
      right: 20px;
      background: #222;
      color: #fff;
      padding: 15px 20px;
      border-radius: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 9999;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }

    #cookie-banner p {
      margin: 0;
      font-size: 14px;
    }

    #cookie-banner button {
      background: #4caf50;
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
    }

    #cookie-banner button:hover {
      background: #45a049;
    }
