body {
            background: linear-gradient(135deg, #e8f0fe, #dbe9f4, #cfd8dc);
            font-family: 'Arial', sans-serif;
        }

.navbar {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 60px;
            z-index: 1000;
        }

        .navbar-nav {
            display: flex;
            justify-content: flex-end;
            gap: 20px; 
            width: 100%; 
            font-weight: 500;
        }

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #f8f9fa;
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .navbar-nav .nav-link {
        color: #000 !important;
    }
}