      .card{
        border:none;
      }
      .category-item {
			display:block;
            padding: 0.5rem 1rem;
            cursor: pointer;
            transition: background-color 0.2s;
    color: var(--bs-card-color) !important;
    text-decoration: none;
        }
        .category-item:hover {
            background-color: #f8f9fa;
            border-radius: 7px;
        }
        .category-item.active {
            background-color: #d1f0e8;
            color: #000;
            border-radius: 7px;
        }
        .product-card {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: transform 0.2s;
        }
        .product-card:hover {
            transform: translateY(-2px);
        }
        .product-title{
            color: #00a884;
            margin-bottom: 0.5rem;
        }
		.product-title a{
            color: #00a884!important;
			text-decoration:none;
        }
        .product-category {
            font-size: 0.85rem;
            color: #6c757d;
            margin-bottom: 0.5rem;
        }
        .product-description {
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        .product-specs {
            display: flex;
            gap: 1.5rem;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #6c757d;
        }
        .spec-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .spec-item img{
            width: 25px; 
            height: 25px;
        }
        .pagination .page-link {
            color: #00a884;
            border: 1px solid #dee2e6;
        }
        .pagination .page-item.active .page-link {
            background-color: #00a884;
            border-color: #00a884;
            color: white;
        }
        .section-title {
            color: #343a40;
            margin-bottom: 2rem;
        }
        .help-section {
            background-color: #f8f9fa;
            padding: 3rem 0;
        }
        .help-card {
            background-color: white;
            border-radius: 8px;
            padding: 2rem;
            height: 100%;
        }
        .btn-primary {
            background-color: #00a884;
            border-color: #00a884;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: #008c70;
            border-color: #008c70;
        }
        .download-btn {
            border: 2px solid #00a884;
            color: #00a884;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            line-height: 1rem;
        }
        .download-btn span{display:block;font-size:0.8rem}
        .download-btn:hover {
            background-color: #d1f0e8;
        }