
		.glav_price_clining {
            font-family: Arial, sans-serif;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
        }
		
		
		.glav_p {
		margin-bottom: 30px;
		
		color: #4caf50;
		    margin-top: 12px;
    font-weight: bold;
    font-size: 16px;
		}
        
        .glav_price_clining h1 {
            color: #000000;
            margin-bottom: 30px;
			margin-top: 30px;
            font-size: 36px;
        }
        
        .glav_categories {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .glav_category {
            width: 250px;
            text-align: center;
            position: relative;
        }
        
        .glav_category-image-container {
            padding: 5px;
			border: 2px #e4e1e1 solid;
			border-radius: 10px;
			box-shadow: 0 2px 10px rgb(0 0 0 / 10%);
			overflow: hidden;
			transition: transform 0.3s ease;
        }
        
        .glav_category-image-container:hover {
            transform: scale(1.05);
        }
        
        .glav_category img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 5px;
            display: block;
        }
        
        .glav_price-label {
            position: inherit;
            bottom: 15px;
            left: 0;
            right: 0;
            background-color: rgb(57 78 97);
            color: white;
            padding: 8px;
            font-weight: bold;
            border-radius: 10px;
        }
        
        .glav_category a {
            text-decoration: none;
            color: #333;
            display: block;
        }
        
        .glav_category p {
            margin-top: 12px;
            font-weight: bold;
            font-size: 16px;
			color: #2a6496
        }
        
        .glav_contact-text {
            margin-top: 30px;
            font-size: 20px;
            color: #555;
        }
        
		
		
		
		
        @media (max-width: 768px) {
            .glav_categories {
                gap: 20px;
            }
            
            .glav_category {
                width: calc(50% - 20px);
            }
            
            .glav_category img {
                height: 200px;
            }
        }
        
        @media (max-width: 480px) {
            .glav_category {
                width: calc(50% - 15px);
            }
            
            .glav_category img {
                height: 150px;
            }	
	
        }
