
    
        /*.container {*/
        /*    width: 90%;*/
        /*    margin: 0 auto;*/
        /*}*/

        /* Heading Styles */
        .other-vendor-categories {
            font-size: 2rem;
            color: #2c3e50;
            text-align: center;
            margin: 20px 0;
            font-weight: bold;
        }

        /* Services Section */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            padding: 20px;
            grid-auto-rows: 1fr;
        }

        .service {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: center;
            overflow: hidden;
            padding: 15px;
        }

        .service img {
            width: 100%;
            height: 200px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 15px;
        }

        .service h2 {
            font-size: 1.6rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .service p {
            font-size: 1rem;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        /* Button Styles */
        .buttons {
            display: flex;
            justify-content: space-evenly;
            gap: 10px;
        }

        .view-btn, .query-btn {
            background-color: #e74c3c;
            color: #fff;
            border: none;
            padding: 8px 16px;
            cursor: pointer;
            border-radius: 5px;
            font-size: 0.9rem;
        }

        .view-btn:hover, .query-btn:hover {
            background-color: #c0392b;
        }

        .query-btn {
            background-color: #3498db;
        }

        .query-btn:hover {
            background-color: #2980b9;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .view-btn, .query-btn {
                font-size: 0.8rem;
                padding: 6px 12px;
            }

            .service h2 {
                font-size: 1.4rem;
            }

            .service p {
                font-size: 0.9rem;
            }
        }
