*{
			font-family: Poppins;
		}
		.policy-section:not(:last-child) {
            border-bottom: 1px solid #dee2e6;
        }
        .toc-link {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }
        .toc-link:hover {
            color: #0d6efd;
        }
        /* Navbar Styling */
        .navbar {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 12px 0;
        }

        /* Brand Text */
        .navbar-brand {
            font-size: 1.4rem;
            font-weight: 700;
            color: #333 !important;
            letter-spacing: 0.3px;
        }

        /* Navbar Links */
        .navbar-nav .nav-link {
            color: #444 !important;
            font-weight: 500;
            padding: 8px 14px;
            transition: 0.3s ease;
        }

        /* Hover Effect */
        .navbar-nav .nav-link:hover {
            color: #007bff !important;
            transform: translateY(-1px);
        }

        /* Active Link */
        .navbar-nav .nav-link.active {
            color: #007bff !important;
            font-weight: 600;
        }

        /* Mobile Toggle Icon */
        .navbar-toggler {
            border: none;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        /* Footer */
        .footer {
            background: linear-gradient(145deg, #1a1c23, #242730);
            color: #ffffff;
        }
        
        .footer-title {
            font-size: 20px;
            color: #fff;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 30px;
            height: 2px;
            background: #6c5ce7;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            color: #b4b6bb;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #ffffff;
            padding-left: 5px;
        }        
        .footer-bottom {
            background: rgba(0,0,0,0.2);
        }
        
        .footer-bottom a {
            
            color: #6c5ce7;
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            color: #ffffff;
        }