/* Сетка контактов (второй блок - info-grid) */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
            padding: 48px 32px;
            background-color: #fafafa;
        }

        .info-card {
            background-color: #f0f0f0;
            padding: 32px 24px;
            border-radius: 8px;
            border-left: 4px solid #b22222;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .info-card:hover {
            transform: translateY(-6px);
            border-left-width: 6px;
            box-shadow: 0 15px 30px rgba(178, 34, 34, 0.1);
        }
        .info-card h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #b22222;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .info-card p {
            color: #4a4a4a;
            font-size: 16px;
            margin-bottom: 12px;
        }
        .info-card .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 12px 0;
            color: #2b2b2b;
        }
        .info-card .contact-item::before {
            content: "●";
            color: #b22222;
            font-weight: bold;
            font-size: 20px;
        }
		@media (max-width: 700px)
		{
		 .info-grid {
                padding: 32px 20px;
            }
		}
		.section-title {
            font-size: 150%;
            font-weight: 700;
            text-align: center;
            margin-bottom: 48px;
            text-transform: uppercase;
            color: #2b2b2b;
        }
        .section-title span {
            color: #b22222;
            background: #e9e9e9;
            padding: 4px 16px;
            border-radius: 40px;
            border: 1px solid #b22222;
        }
		.services {
            background-color: #fafafa;
            padding-top: 32px;
        }
		

.client_img {
		 width: 95%;
		 height: auto%;
		 min-height: 25px;
		}
		