
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            min-height: 100vh;
        }
        
        .nav-page-contents{
            display: flex;
            padding-top: 50px;
        }
        .sidebar{
            width: 150px;
        }
        .sidebar-quick-links{
            display: flex;
            flex-direction: column;
        }
        .sidebar-quick-links a{
            text-decoration: ;
            text-decoration: none;
            color: #444;
            display: block;
            padding: 8px 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .sidebar-quick-links a:hover {
            background: #f0f7ff;
            color: #007bff;
            padding-left: 15px;
        }

        .sidebar-left, .sidebar-right {
            background-color: #ecf0f1;
            padding: 1rem;
        }
        
        .navigation-list {
            list-style-type: none;
            padding: 0;
        }
        .navigation-list li {
            
        }
        
        .navigation-list li a {
            color: white;
            margin-bottom: 0.5rem;
            border-radius: 30px;
            padding: 8px 20px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            display: block;
            transition: background-color 0.3s ease;
        }
        .navigation-list li a:hover {
            background-color: #2980b9;
        }
        
        .footer {
            
            background-color: #34495e;
            color: white;
            text-align: center;
            padding: 1rem;
        }
        .ad-placeholder {
            background-color: #bdc3c7;
            height: 250px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1rem;
        }



        /* Navbar Styling */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft Shadow */
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
        }
        /* Site Logo & Name */
        .logo {
            padding: 0px 20px;
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }
        .logo i {
            font-size: 28px;
            color: #007bff;
            margin-right: 8px;
        }
        /* Navigation Links */
        .nav-links {
            list-style: none;
            display: flex;
        }
        .nav-links li {
            margin: 0 15px;
        }
        .nav-links a {
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            color: #333;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background: #007bff;
            color: white;
            box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
        }
        .nav-links a.active {
            background: #007bff;
            color: white;
            box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
        }
        
        /* Mobile Menu Icon */
        .menu-icon {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Sidebar Styling */
        .sidebar {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin: 20px 10px;
        }
        .sidebar h2 {
            color: #333;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #007bff;
        }
        
        
        /* Main Content Styling */
        .main-content {
            padding: 20px;
            width: 70%;
            background-color: white;
            margin-top: 30px;
        }
        
        /* Ad Container Styling */
        .ad-container {
            max-width: 200px;
            margin: 10px 0;
        }
        .ad-image {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .ad-placeholder {
            width: 100%;
            padding: 30px 10px;
            background-color: #f0f0f0;
            text-align: center;
            color: #666;
            border: 1px dashed #ccc;
            margin: 10px 0;
        }
