								.contacts-grid {
									display: flex;
									flex-wrap: wrap;
									justify-content: center;
									gap: 30px;
									margin: 40px 0;
								}

								.contact-card {
									background: #fff;
									border-radius: 12px;
									padding: 30px;
									box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
									text-align: center;
									flex: 1;
									min-width: 280px;
									max-width: 350px;
									transition: transform 0.3s, box-shadow 0.3s;
								}

								.contact-card:hover {
									transform: translateY(-5px);
									box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
								}

								.contact-card img {
									width: 50px;
									height: 50px;
									margin-bottom: 15px;
								}

								.contact-card .title {
									font-size: 14px;
									color: #666;
									text-transform: uppercase;
									letter-spacing: 1px;
									margin-bottom: 10px;
								}

								.contact-card .phone-link {
									font-size: 22px;
									font-weight: bold;
									color: #2c5282;
									text-decoration: none;
									display: block;
									margin-bottom: 8px;
								}

								.contact-card .phone-link:hover {
									color: #e74c3c;
								}

								.contact-card .work-time {
									font-size: 13px;
									color: #888;
									margin: 0;
								}

								.contacts-cta {
									text-align: center;
									margin: 40px 0;
								}

								.contacts-cta .btn {
									padding: 15px 40px;
									font-size: 16px;
								}

								@media (max-width: 768px) {
									.contacts-grid {
										flex-direction: column;
										align-items: center;
									}

									.contact-card {
										width: 100%;
										max-width: 100%;
									}
								}
