* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      overflow: hidden;
      font-family: Arial, sans-serif;
    }
	img.img-responsive {width:100%; height:auto;}
    body {
      background: url('../img/Cursive.jpg') no-repeat center center fixed;
      background-size: cover;
    }
	body::before {
	  content: "";
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.0),   /* Dark at top */
		rgba(0, 0, 0, 0.0)    /* Light at bottom */
	  );
	  z-index: 1;
	  pointer-events: none;
	}
	header {
      background: #ffffff;
      width: 100%;
      height: 75px; /* adjust as needed based on your logo size */
      position: fixed;
      top: 0;
      left: 0;
      z-index: 5; /* should be behind the logos (z-index:10) but above ::before overlay (z-index:1) */
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* optional: subtle shadow */
    }
    @media (max-width: 768px) {
      body {
        background: url('../img/Digital-Collateral-2.jpg') no-repeat center center fixed;
        background-size: cover;
      }
      .top-left {width:165px!important;}
      .top-right {width:100px!important;}
	  .bottom-right {bottom:80px!important;}
	  body::before {
		  background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.0),   /* Dark at top */
			rgba(0, 0, 0, 0.0)    /* Light at bottom */
		  );
	  z-index: 1;
	  pointer-events: none;
	}
    }

    /* Fixed elements */
    .top-left {
      position: fixed;
      top: 20px;
      left: 20px;
      color: white;
      z-index: 10;
	  width:150px;
    }

    .top-left h1 {
      font-size: 24px;
    }

    .top-right {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 10;
	  width:150px;
    }

    .bottom-right {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 10;
    }

    .bottom-right img {
      height: 100px;
    }

    /* Desktop Navigation */
    .side-nav {
      position: fixed;
      left: 20px;
      top: 60%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 5px;
      z-index: 10;
    }

    .side-nav a {
      color: white;
      text-decoration: none;
      background: rgba(0, 0, 0, 0.6);
      padding: 10px 15px;
      border-radius: 4px;
      font-size: 16px;
    }

    @media (max-width: 1024px) {
      /*.side-nav {
        display: none;
      }*/
    }

    /* Mobile Hamburger */
    .hamburger-menu {
      display: none;
    }

    @media (max-width: 1024px) {
      .hamburger-menu {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 20;
      }

      .hamburger-toggle {
        background: rgba(0, 0, 0, 0.8);
        color: white;
        text-align: center;
        padding: 15px;
        font-size: 18px;
        cursor: pointer;
        position: relative;
      }

      .hamburger-toggle::before {
        content: "☰";
        display: inline-block;
        font-size: 24px;
      }

      .hamburger-toggle.open::before {
        content: "✕";
      }

      .hamburger-links {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        bottom: 100%;
        left: 0;
        width: 100%;
      }

      .hamburger-links a {
        padding: 15px;
        text-align: center;
        color: white;
        text-decoration: none;
        border-top: 1px solid #444;
		display:block;
      }
    }