.contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

@media (max-width: 1024px) {
  .contact-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-list {
    grid-template-columns: 1fr;
  }
}

.contact-person {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ff6b35;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

p.contact-title {
  margin: 0;
}

.contact-phone,
.contact-email {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top: 1rem;
}

.contact-phone a,
.contact-email a {
  padding-left: 10px;
}

.contact-phone span,
.contact-email span {
  color: #ff6b35
}