/* Social Links */
.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link.linkedin {
  background: #0077b5;
  color: #EAEAEA;
}

.social-link.linkedin:hover {
  background: #005885;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: #EAEAEA;
}

.social-link.instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(188, 24, 136, 0.3);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Mobile social links */
@media (max-width: 768px) {
  .social-links {
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
  }
  
  .social-link {
    justify-content: center;
    padding: 14px 24px;
    font-size: 16px;
  }
}

