/* Reset and base styles */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #f5f7fa;
  color: #333;
}

.container {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Top alignment */
  min-height: 100vh;
  padding: 2rem;
}

/* Profile card layout */
.profile-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  text-align: center; /* Center content */
  padding: 2rem;
}

/* Profile picture */
.profile-pic {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
}

/* Text styles */
.name {
  font-size: 2rem;
  color: #1a237e;
  margin-bottom: 0.5rem;
}

.title {
  font-size: 1.2rem;
  color: #5c6bc0;
  margin-bottom: 1.5rem;
}

.bio {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact a {
  color: #1a73e8;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Optional: smaller photo on mobile */
@media (max-width: 480px) {
  .profile-pic {
    width: 140px;
    height: 140px;
  }

  .name {
    font-size: 1.6rem;
  }

  .title {
    font-size: 1rem;
  }
}
