        body { 
            margin: 0; 
            background: #000; 
            color: #fff; 
            font-family: sans-serif; 
            display: flex; 
            flex-direction: column; 
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            padding-top: 80px; /* Offset for sticky menu */
            padding-bottom: 60px; /* Offset for sticky footer */
            box-sizing: border-box;
        }

        /* --- STICKY MENU STYLES --- */
        .navbar {
            background-color: #e0e0e0; 
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            display: flex;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.4);
        }

        .nav-container {
            width: 100%;
            max-width: 1200px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li { position: relative; }

        .nav-links a {
            display: block;
            padding: 15px 15px;
            color: #000; 
            text-decoration: none;
            font-weight: bold;
            font-size: 13px;
        }

        .nav-links a:hover { background-color: #d0d0d0; }

        /* Dropdown Logic */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #e0e0e0;
            min-width: 240px;
            top: 100%;
            left: 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        .dropdown-content a { border-bottom: 1px solid #ccc; text-align: left; }
        .dropdown:hover .dropdown-content { display: block; }

        /* Mobile Hamburger */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 15px 0;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #000;
            margin: 2px 0;
        }

        @media (max-width: 980px) {
            .menu-toggle { display: flex; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background-color: #e0e0e0;
            }
            .nav-links.active { display: flex; }
            .dropdown-content { position: static; display: none; width: 100%; background-color: #d8d8d8; }
            .dropdown.active .dropdown-content { display: block; }
        }

        /* --- STICKY FOOTER STYLES --- */
        .footer {
            background-color: #1a1a1a;
            color: #ccc;
            width: 100%;
            position: fixed;
            bottom: 0;
            left: 0;
            text-align: center;
            padding: 15px 10px;
            font-size: 14px;
            border-top: 1px solid #333;
            z-index: 1000;
        }

        /* --- CONTENT STYLES --- */
        .container { 
            width: 100%; 
            max-width: 800px; 
            text-align: center; 
        }

        .video-wrapper { 
            width: 100%; 
            aspect-ratio: 16 / 9; 
            margin-bottom: 20px;
        }

        iframe { 
            width: 100%; 
            height: 100%; 
            border: 0; 
        }

        p {
            line-height: 1.6;
            margin-bottom: 15px;
            text-align: left; 
        }

        .container a { 
            color: #00a4bd; 
            text-decoration: none; 
            font-weight: bold;
        }

        .back-button {
          display: inline-block;
          padding: 10px 20px;
          background-color: #d3d3d3; /* Light Gray */
          color: #000000;            /* Black Text */
          text-decoration: none;
          border-radius: 5px;
          font-family: Arial, sans-serif;
          font-weight: bold;
          transition: background-color 0.3s ease;
        }

        .back-button:hover {
          background-color: #bcbcbc; /* Slightly darker gray on hover */
          color: #000000;
        }


