* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        body {
            display: flex;
            background-color: #f4f4f4;
        }
        /* 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;
    padding: 15px;
    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;
}
        .content {
            margin: 70px 10px 10px 10px;
            background: white;
            padding: 20px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            width: 80%;
            border-radius: 20px;
        }
        .ads {
            margin-top: 70px;
            width: 18%;
            background: #f8f8f8;
            text-align: center;
            position: fixed;
            right: 0;
            height: 100vh;
        }
        .ads img{
            width: -webkit-fill-available;
        }
        @media screen and (max-width: 1024px) {
            .sidebar {
                width: 200px;
            }
            .content {
                max-width: 600px;
            }
            .ads {
                width: 200px;
            }
        }
        @media screen and (max-width: 768px) {
            .sidebar {
                width: 100%;
                height: auto;
                position: relative;
            }
            .content {
                margin-left: 0;
                max-width: 100%;
                padding: 15px;
                width: 100%;
            }
            .ads {
                display: none;
            }
        }