.contact-section {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
    color: #333;
  text-align: center;
  padding: 80px 20px;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}

.contact-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-icons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.15);
}

.social-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-text {
  margin-top: 60px;
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 480px) {
  .contact-section h2 {
    font-size: 2rem;
  }

  .social-icons img {
    width: 36px;
    height: 36px;
  }
}
