.logo-container {
            flex: 1;
        }

        .nav-center {
            flex: 2;
            display: flex;
            justify-content: center;
        }

        .user-section {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .mobile-toggle {
            display: none; /* Hidden on desktop */
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .toggle-icon {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #333;
            position: relative;
        }

            .toggle-icon::before,
            .toggle-icon::after {
                content: '';
                position: absolute;
                width: 25px;
                height: 3px;
                background-color: #333;
                left: 0;
            }

            .toggle-icon::before {
                top: -8px;
            }

            .toggle-icon::after {
                bottom: -8px;
            }

        .navbar-brand {
            font-size: 1rem;
            font-weight: 600;
            color: #6366f1;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            margin: 0 15px;
        }

            .nav-item a {
                color: #333;
                text-decoration: none;
                font-size: 1rem;
                font-weight: 500;
                transition: color 0.2s ease;
            }

                .nav-item a:hover {
                    color: #6366f1;
                }

        .greeting {
            color: #6366f1;
            margin-right: 15px;
            font-weight: 500;
            font-size: 1rem;
        }

        .logout-link {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
        }

            .logout-link:hover {
                color: #6366f1;
                text-decoration: underline;
            }

        @media (max-width: 1100px) {
            .header-container {
                width: 95%;
                max-width: 1076px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }

            .logo-container {
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .mobile-toggle {
                display: block; /* Show on mobile */
            }

            .nav-center, .user-section {
                width: 100%;
                display: none; /* Hidden by default on mobile */
            }

                .nav-center.active, .user-section.active {
                    display: flex; /* Show when active */
                }

            .nav-menu {
                flex-direction: column;
                width: 100%;
            }

            .nav-item {
                margin: 10px 0;
            }

            .user-section {
                margin-top: 15px;
                justify-content: flex-start;
            }
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
        }

            .btn-primary:hover,
            .btn-primary:focus {
                background-color: var(--primary-dark);
                border-color: var(--primary-dark);
                transform: translateY(-2px);
                box-shadow: 0 4px 8px rgba(99, 102, 241, 0.4);
            }

        .progress-tracker-container {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--card-shadow);
            margin-bottom: 2rem;
            padding: 1rem;
        }

        .message {
            padding: 1rem;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            font-weight: 500;
            box-shadow: var(--card-shadow);
            animation: slideIn 0.3s ease-out;
        }

            .message.error {
                background-color: #FEE2E2;
                color: #991B1B;
                border-left: 4px solid #EF4444;
            }

            .message.success {
                background-color: #ECFDF5;
                color: #065F46;
                border-left: 4px solid #10B981;
            }

        hr {
            border-top: 1px solid #E5E7EB;
            margin: 2rem 0;
        }

        .footer {
            text-align: center;
            color: #94a3b8;
            padding: 8px 0;
            margin-top: 15px;
            font-size: 10px;
        }

        /* Animation for messages */
        @keyframes slideIn {
            from {
                transform: translateY(-10px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

            .footer-links-section {
                margin-top: 4rem;
                margin-bottom: 2rem;
                padding-top: 2rem;
                border-top: 1px solid #E2E8F0;
                max-width: 1076px; /* Add this to match your content width */
                margin-left: auto; /* Add this for centering */
                margin-right: auto; /* Add this for centering */
                padding-left: 20px; /* Add some padding for mobile */
                padding-right: 20px; /* Add some padding for mobile */
                min-height: 216px; 
                height: 191px; /* Use exact measured height */
                box-sizing: border-box; /* Include padding in height calculation */
            }

            .footer-links-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 2rem;
            }

            /* Rest of your footer CSS remains the same */
            .footer-links-column h4 {
                font-size: 1.1rem;
                font-weight: 600;
                color: #1E293B;
                margin-bottom: 1rem;
            }

            .footer-links-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                .footer-links-list li {
                    margin-bottom: 0.1rem;
                    line-height: 1.3;
                }

                .footer-links-list a {
                    color: #64748B;
                    text-decoration: none;
                    transition: color 0.2s;
                    font-size: 0.95rem;
                }

                    .footer-links-list a:hover {
                        color: #6366F1;
                        text-decoration: none;
                    }

            .footer-legal {
                margin-top: 2rem;
                text-align: center;
                color: #94A3B8;
                font-size: 0.5rem;
            }

                .footer-legal a {
                    color: #64748B;
                    text-decoration: none;
                }

                    .footer-legal a:hover {
                        color: #6366F1;
                        text-decoration: underline;
                    }

            @media (max-width: 768px) {
                .footer-links-grid {
                    grid-template-columns: repeat(2, 1fr);
                }

                .footer-links-section {
                    padding-left: 15px;
                    padding-right: 15px;
                    min-height: 250px;
                }
            }

            @media (max-width: 480px) {
                .footer-links-grid {
                    grid-template-columns: 1fr;
                }
                .footer-links-section {
                    min-height: 300px; /* Taller on mobile - single column layout */
                }
            }