        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            margin-top: 70px;
        }
        
        
        .results-section {
            margin-top: 30px;
        }
        
        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #1a3a6d;
        }
        
        .results-header h2 {
            color: #1a3a6d;
            font-size: 24px;
        }
        
        .results-count {
            color: #666;
            font-size: 16px;
            background: #f0f4ff;
            padding: 6px 12px;
            border-radius: 20px;
        }
        
        .result-list {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        }
        
        .result-item {
            display: flex;
            padding: 25px;
            border-bottom: 1px solid #eee;
            transition: all 0.3s;
        }
        
        .result-item:hover {
            background: #f9fbfe;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(26, 58, 109, 0.1);
        }
        
        .result-image {
            width: 200px;
            height: 150px;
            border-radius: 6px;
            overflow: hidden;
            margin-right: 25px;
            flex-shrink: 0;
            background: linear-gradient(135deg, #1a3a6d 0%, #0f2750 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 40px;
        }
        
        .result-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .result-content {
            flex: 1;
        }
        
        .result-type {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .result-type.product {
            background: rgba(26, 58, 109, 0.1);
            color: #1a3a6d;
        }
        
        .result-type.news {
            background: rgba(109, 26, 26, 0.1);
            color: #6d1a1a;
        }
        
        .result-title {
            font-size: 20px;
            font-weight: 600;
            color: #1a3a6d;
            margin-bottom: 10px;
            text-decoration: none;
            display: block;
        }
        
        .result-title:hover {
            text-decoration: underline;
        }
        
        .result-summary {
            color: #555;
            margin-bottom: 15px;
            line-height: 1.7;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            list-style: none;
        }
        
        .pagination li {
            margin: 0 5px;
        }
        
        .pagination a {
            display: block;
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            color: #1a3a6d;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .pagination a:hover,
        .pagination a.active {
            background: #1a3a6d;
            color: white;
            border-color: #1a3a6d;
        }
        
        .type-tabs {
            display: flex;
            margin-bottom: 20px;
            border-bottom: 2px solid #eee;
        }
        
        .type-tab {
            padding: 10px 20px;
            cursor: pointer;
            font-weight: 500;
            color: #666;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all 0.3s;
        }
        
        .type-tab.active {
            color: #1a3a6d;
            border-bottom: 2px solid #1a3a6d;
        }
        
        .type-tab:hover:not(.active) {
            color: #0f2750;
        }
        
        .nodata{
            padding:20px 20px;
            font-size:1.2rem;
            color:#000;
            line-height:1.6;
            min-height:40vh;
        }
        
        @media (max-width: 768px) {
            
            .search-bar {
                width: 100%;
                margin: 15px 0;
            }
            
            .result-item {
                flex-direction: column;
            }
            
            .result-image {
                width: 100%;
                height: 200px;
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .results-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .results-count {
                margin-top: 10px;
            }
        }
        
        .empty-state {
            text-align: center;
            padding: 50px 20px;
            color: #666;
        }
        
        .empty-state i {
            font-size: 60px;
            color: #d0d9e9;
            margin-bottom: 20px;
        }
        
        .empty-state h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #1a3a6d;
        }