.contact-page {
  margin: 0 auto;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  color: #fff;
  background: linear-gradient(to top right, #101917, #192320);
}

.contact-page h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;
}

.contact-info,
.socials {
  margin-bottom: 50px;
  text-align: center;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 8px 0;
  color: #999999;
}

.contact-info a {
  color: #00CCBB;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #1e90ff;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.social-links a {
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a img {
  width: 32px;
  height: 32px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.social-links a span {
  transition: transform 0.3s ease, color 0.3s ease;
  color: #999999;
}

.social-links a:hover {
  color: #00CCBB;
  transform: scale(1.1); 
}


