.dj-megamenu-visium li a.dj-up_a {
    font-size: 14px;
}
.blog.pravinfo p.readmore {
    text-align: left;
}


/* Cookie Banner Styles */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 20px;
            box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
            z-index: 1000;
            display: none;
            border-top: 3px solid #e74c3c;
        }

        .cookie-banner.active {
            display: block;
            animation: slideUp 0.3s ease-out;
        }

        @keyframes slideUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .cookie-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
        }

        .cookie-text {
            flex: 1;
            min-width: 300px;
            font-size: 14px;
            line-height: 1.5;
            color: #333;
        }

        .cookie-text a {
            color: #e74c3c;
            text-decoration: none;
            font-weight: bold;
        }

        .cookie-text a:hover {
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 5px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 140px;
            text-align: center;
        }

        .cookie-btn.accept {
            background: #e74c3c;
            color: white;
        }

        .cookie-btn.accept:hover {
            background: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
        }

        .cookie-btn.reject {
            background: white;
            color: #e74c3c;
            border: 2px solid #e74c3c;
        }

        .cookie-btn.reject:hover {
            background: #f9f9f9;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(231, 76, 60, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .cookie-container {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                min-width: 100%;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
            
            .cookie-btn {
                min-width: 120px;
                padding: 10px 20px;
            }
            
            .content {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .cookie-banner {
                padding: 15px;
            }
            
            .cookie-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .cookie-btn {
                width: 100%;
            }
        }