/* ========== ABOUT SECTION STYLES ========== */
/* Add custom styles for the about section here */

/* Example: Profile image styles */
.about-section img {
  border-radius: 50%;
  max-width: 150px;
  margin: 0 auto 15px;
  display: block;
}

/* Example: Bio text styles */
.about-section .bio {
  font-size: 14px;
  line-height: 1.8;
}

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

.social-links a {
  color: #ff4fd8;
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 0.7;
}