body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  padding: 20px;
}

.page-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: bold;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}

.contact-card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #ddd;
}

.contact-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-card img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-phone {
  font-size: 18px;
  font-weight: bold;
}

.contact-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}
