.profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.profile {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s;
}

.profile:hover {
  transform: translateY(-5px);
}

.profile .image img {
  max-width: 100px;
  height: auto;
}

.profile .content h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
}

.profile .content p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

@media (max-width: 600px) {
  .profile .image img {
    max-width: 80px;
  }

  .profile .content h3 {
    font-size: 1rem;
  }
}

.phone-container {
  font-size: 18px;
  font-weight: 700;
}

.phone-icon {
  margin-right: 10px;
  /* Space between the icon and the number */
}
