.social-icons {
  padding: 20px 30px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #666;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon i {
  font-size: 20px;
}

.social-icon:hover {
  background-color: #646cff;
  color: white;
}