@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.profile-container {
  width: 100%;
  max-width: 420px;
}

.profile-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #4f46e5;
}

.name {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
}

.title {
  font-size: 16px;
  color: #6b7280;
  margin: 5px 0 15px;
}

.description {
  font-size: 14px;
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info p {
  font-size: 14px;
  color: #4b5563;
  margin: 4px 0;
}

.contact-info i {
  margin-right: 8px;
  color: #4f46e5;
}

.research-links {
  margin: 20px 0 10px;
}

.research-links a {
  display: inline-block;
  margin: 0 8px;
  font-size: 18px;
  color: #374151;
  transition: transform 0.3s ease;
}

.research-links img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.research-links a:hover {
  transform: scale(1.2);
  color: #1e3a8a;
}

.social-links a {
  color: #4f46e5;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #1e3a8a;
}

@media (max-width: 480px) {
  .profile-card {
    padding: 25px 15px;
  }

  .name {
    font-size: 20px;
  }

  .description {
    font-size: 13px;
  }

  .profile-img {
    width: 100px;
    height: 100px;
  }

  .research-links img {
    width: 18px;
    height: 18px;
  }
}
