        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            overflow-x: hidden;
        }
        
        .header {
            width: 100%;
            height: 450px;
			background: url(../images/banner.png)no-repeat;
        
            position: relative;
            display: flex;
            padding: 0px;
        }
        
        .top-container {
            width: 100%;
            max-width: 1160px;
            margin: 0 auto;
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        
        .logo {
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
        
        .login-link {
            color: white;
            text-decoration: none;
            font-size: 16px;
        }
        
        .content-wrapper {
            display: flex;
            width: 100%;
            height: calc(100% - 60px);
            margin-top: 60px;
            position: relative;
        }
        
        .sidebar {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);

         
            z-index: 100;
            transition: all 0.3s ease;
            padding: 10px 0;
        }
        
        .category {
            padding: 12px 20px;
            position: relative;
            cursor: pointer;
			background-color: #009944;
			 color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5px;
        }
        
        .category:last-child {
            margin-bottom: 0;
        }
        
        .category::after {
           content: url('../images/ico.png');
            margin-left: 10px;
            transition: transform 0.3s ease;
            color: white;
        }
        
        .category.active::after {
            transform: rotate(90deg);
        }
        
        .category:hover {
            background-color: rgba(0, 0, 0, 0.1);
        }
        
        .submenu {
            display: none;
            background-color: white;
            border-radius: 0 0px 0px 0;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
            width: 260px;
        }
        
        .category.active .submenu {
            display: block;
            position: absolute;
            left: 100%;
            top: 0;
        }
        
        .submenu a {
			font-size: 14px;
            display: block;
            padding: 2px 10px;
            color: #333;
            text-decoration: none;
        }
        
        .submenu a:hover {
            background-color: #f5f5f5;
        }
        
        .search-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            padding: 0 20px;
        }
        
        .title {
            color: white;
            font-size: 32px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .search-box {
            display: flex;
            width: 100%;
            max-width: 730px;
        }
        
        .search-input {
			 width: 100%;
            max-width: 600px;
            padding: 6px 10px;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 16px;
            outline: none;
        }
        
        .search-btn {
            padding: 12px 25px;
            background-color: #009944;
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 16px;
        }
        
        .hot-search {
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
        
        .hot-search a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
        }
        
        .mobile-category {
            display: none;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            background-color: #ff0000;
            border-radius: 0 5px 5px 0;
            padding: 10px;
            z-index: 101;
            gap: 10px;
        }
        
        .mobile-category-item {
            padding: 1px;
            cursor: pointer;
            text-align: center;
            color: white;
        }
        
        .mobile-category-item::after {
           content: url('../images/ico.png');
            display: block;
            font-size: 16px;
            transition: transform 0.3s ease;
        }
        
        .mobile-category-item.active::after {
            transform: rotate(90deg);
        }
        
        @media (max-width: 768px) {
            .header {
                height: 400px;
            }
            
            .title {
                font-size: 24px;
            }
            
            .sidebar {
                display: none;
                background-color: #ff0000;
            }
            
            .mobile-category {
                display: flex;
                flex-direction: column;
            }
            
            .content-wrapper {
                margin-top: 40px;
            }
            
            .category.active .submenu {
                z-index: 102;
            }
			  .search-input {
			 width: 80%;
        
            padding: 6px 10px;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 16px;
            outline: none;
        }
	 .search-box {
            display: flex;
            width: 80%;
          
        }
        }
        }






 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
         
            background-color: #f5f5f5;
        }
        
        h1 {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
        }
        
        .logo-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo-item {
            width: 150px;
            height: 80px;
            border: 1px solid #ddd;
            border-radius: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: white;
            padding: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .logo-item:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 1;
        }
        
        .logo-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        @media (max-width: 1200px) {
            .logo-item {
                width: calc(25% - 20px);
            }
        }
        
        @media (max-width: 768px) {
            .logo-item {
                width: calc(33.333% - 20px);
            }
        }
        
        @media (max-width: 480px) {
            .logo-item {
                width: calc(50% - 20px);
            }
        }