.main-footer {
            background-color: #2b323c; 
            color: #cccccc; 
            padding: 30px 5%;
            width: 100%;
            box-sizing: border-box;
        }

        /* --- Footer Top Row (Logo, Menu, Copyright) --- */
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            flex-wrap: wrap;
        }

        /* Logo/Branding */
        .footer-left {
            display: flex;
            align-items: center;
           
        }

        .logo-icon {
            background-color: #2923d0; 
            color: white;
            font-size: 1.5em;
            font-weight: bold;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 10px;
        }

        .brand-name {
            font-size: 1.8em;
            font-weight: 600;
        }

        /* Navigation Menu */
        .footer-menu {
            flex-grow: 1; 
            text-align: center;
        }

        .footer-menu a {
            color: #cccccc;
            text-decoration: none;
            margin: 0 12px;
            font-size: 0.95em;
            transition: color 0.2s;
            white-space: nowrap;
        }

        .footer-menu a:hover {
            color: white;
        }

        /* Copyright */
        .footer-right p {
            font-size: 0.9em;
            margin: 0;
            white-space: nowrap;
            font: bold;
        }

        /* --- Footer Bottom Row (Developer Info) --- */
        .footer-bottom {
            text-align: center;
            padding-top: 10px;
            font-size: 0.9em;
        }

        .themewagon-link {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }

        /* --- Scroll-to-Top Button (Fixed Position) --- */
        .scroll-to-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background-color: #8a2be2; 
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5em;
            text-decoration: none;
            z-index: 100;
        }