        /* === CSS START === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Background Slideshow */
        .bg-slideshow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
        }

        .bg-slideshow img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            animation: imageTransition 15s infinite;
        }

        .bg-slideshow img:nth-child(1) { animation-delay: 0s; }
        .bg-slideshow img:nth-child(2) { animation-delay: 5s; }
        .bg-slideshow img:nth-child(3) { animation-delay: 10s; }

        @keyframes imageTransition {
            0% { opacity: 0; }
            8.33% { opacity: 1; }
            33.33% { opacity: 1; }
            41.66% { opacity: 0; }
            100% { opacity: 0; }
        }

        /* Title Bar */
        .title-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #073763;
            color: #ffd966;
            font-family: 'Faster One', cursive;
            font-size: 36pt;
            padding: 15px 20px;
            text-align: center;
            z-index: 900;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .logo-container {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            height: 40px;
            width: 40px;
            cursor: pointer;
            z-index: 910;
        }

        .logo-container img {
            height: 100%;
            width: auto;
            display: block;
        }

        /* Navigation System */
        .hamburger {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
            cursor: pointer;
            padding: 10px;
            background: rgba(0,0,0,0.7);
            border-radius: 5px;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: white;
            margin: 5px 0;
            transition: 0.4s;
        }

        .nav-container {
            position: fixed;
            top: -100%;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.95);
            backdrop-filter: blur(5px);
            transition: top 0.5s ease;
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-container.active {
            top: 0;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px,6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px,-6px);
        }

        /* Navigation Links */
        .nav-menu {
            list-style: none;
            text-align: center;
            transition: all 0.3s ease; /* Added transition to nav-menu */
        }

        .nav-item {
            margin: 30px 0;
            transition: all 0.3s ease;
        }

       .nav-menu:hover *:not(:hover) {
            filter: blur(2px);
            opacity: 0.5;
        }

        .nav-item a {
            color: white;
            text-decoration: none;
            font-size: 2.5rem;
            font-family: sans-serif;
            transition: all 0.3s ease;
            position: relative;
            padding: 10px 20px;
        }

        .nav-item a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: white;
            transition: width 0.3s ease;
        }

        .nav-item:hover a::after {
            width: 100%;
        }

        /* Content Section */
        .content-section {
            position: relative;
            z-index: 1;
            margin-top: 100vh;
            padding: 40px 20px 80px;
            background: rgba(255,255,255,0.9);
            color: #073767;
            box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
            min-height: 100vh;
        }

        .content-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #073767;
        }

        .content-section p {
            font-size: 18pt;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 20px;
        }

        /* Footer Section */
        .footer-container {
            position: absolute;
            bottom: 20px;
            right: 20px;
            text-align: right;
        }

        .footer {
            display: block;
            padding: 12px 20px;
            margin: 10px 0;
            border-radius: 4px;
            background: rgba(0,0,0,0.8);
            color: white;
            font-size: 0.9rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        .footer:hover {
            transform: translateY(-2px);
            background: rgba(0,0,0,0.9);
        }

        .footer a {
            color: #00b8ff;
            text-decoration: none;
            margin-left: 8px;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .title-bar {
                font-size: 2rem;
                padding: 15px 50px;
            }
            .logo-container {
                height: 30px;
                width: 30px;
                right: 15px;
            }
            .nav-item a {
                font-size: 1.8rem;
            }
            .hamburger {
                top: 10px;
                left: 10px;
            }
            .content-section {
                padding: 30px 15px 80px;
            }
            .content-section h2 {
                font-size: 24pt;
                font-family: Verdana, Geneva, sans-serif;
            }
            .content-section p {
                font-size: 18pt;
                font-family: Arial;
            }
            .footer-container {
                position: static;
                text-align: center;
                margin-top: 30px;
            }
            .footer {
                display: block;
                width: 100%;
                margin: 10px 0;
                text-align: left;
            }
        }
        /* === CSS END === */