.tricolor-bar {
            background: linear-gradient(to right, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%);
        }
        .card-glow {
            box-shadow: 0 10px 30px -5px rgba(30, 58, 138, 0.1);
        }
        .stats-card {
            transition: all 0.3s ease;
        }
        .stats-card:hover {
            transform: translateY(-5px);
        }
        .grievance-item {
            transition: all 0.3s ease;
        }
        .grievance-item:hover {
            background-color: #f8fafc;
        }
        .sidebar {
            transition: all 0.3s ease;
        }
        @media (max-width: 768px) {
            .sidebar {
                transform: translateX(-100%);
            }
            .sidebar.active {
                transform: translateX(0);
            }
        }
        
        /* Custom styles for these pages */
        .step-card {
            border-left: 4px solid #1E3A8A;
            transition: all 0.3s ease;
        }
        .step-card:hover {
            transform: translateX(5px);
        }
        .guideline-card {
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        .guideline-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .category-tag {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        .example-box {
            background-color: #f8fafc;
            border-left: 4px solid #1E3A8A;
        }