.bio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.pfp {
  width: 500px;
  height: auto;
  border-radius: 25px;
  margin-bottom: 20px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.p-bio {
  max-width: 720px;
  padding: 0 15px;
}

.title {
  color: #6a1b9a;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
}

.name {
  font-size: 2rem;
  font-weight: 800;
  margin: 5px 0 20px 0;
  color: #333;
}

.bio-info {
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  color: #444;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .bio {
    flex-direction: row;
    text-align: left;
  }

  .pfp {
    max-width: 400px;
    margin-right: 30px;
    margin-bottom: 0;
    border-radius: 8%;
  }

  .p-bio {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .bio {
    flex-direction: column;
    text-align: left;
    gap: 20px;
  }

  .test {
    max-width: 300px;
    max-height: 350px !important;
    margin-right: 0px !important;
    margin-bottom: 0;
    border-radius: 8%;
    background-position: center 25% !important;
  }

  .p-bio {
    padding: 0;
  }
}

