.bio-wrapper {
  display: flex;
  justify-content: center;
  padding: 0px 20px;
  margin: 44px auto;
  background-color: #f5f5f7;
  flex-direction: column;
  align-items: center;
}

.cv-button-container {
  width: 100%;
  max-width: 1500px;
  margin-bottom: 0rem;
  display: flex;
  justify-content: flex-start;
  padding-left: 0px;
}

.btn-download-cv {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 1rem;
  background-color: #000;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.btn-download-cv:hover {
  background-color: #333;
}

.bio-content {
  background-color: #fff;
  padding: 20px;
  /* padding-left: 20px; */
  max-width: 1500px;
  width: 100%;
  font-family: sans-serif;
  line-height: 1.8;
  font-size: 15px;
  color: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  /* margin-left: 20px; */
}

.bio-content p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.4;
  color: #000;
  text-align: justify;
}

.bio-content ul {
  padding-left: 1.5rem;
  margin-bottom: 20px;
  list-style-type: disc;
}

.bio-content li {
  margin-bottom: 8px;
  line-height: 1;
  font-size: 13px;
}



@media (max-width: 600px) {
  .bio-wrapper {
    padding: 0 10px;
    margin: 20px auto;
  }

  .cv-button-container {
    justify-content: center;
  }

  .btn-download-cv {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 0.9rem;
    margin: 0 auto 1rem auto;
    border-radius: 4px;
    text-align: center;
  }

  .bio-content {
    padding: 15px 10px;
    font-size: 14px;
    max-width: 100%;
    box-shadow: none;
    border-radius: 4px;
  }

  .bio-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .bio-content ul {
    padding-left: 1rem;
  }

  .bio-content li {
    font-size: 12px;
    line-height: 1.3;
  }
}
