#hero {
  display: flex;
  gap: 2.5rem;
}

.profile-pic-container {
  width: 250px;
  height: 250px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 2em;
  box-shadow: 0 0 25px rgba(253, 103, 38, 0.4);
  transition: box-shadow 0.3s ease;

  /* Center the image inside the container */
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-pic-container:hover {
  box-shadow: 0 0 35px rgba(253, 103, 38, 0.6);
}

.profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

.profile-pic-container:hover .profile-pic {
  transform: scale(1.15);
}

.bio-content {
  flex: 1;
}

.biografie h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.biografie h4 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.biografie p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.bio-list {
  list-style: none; /* Remove default bullets */
  padding: 0;
  margin-bottom: 2rem;
}

.bio-list li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 15px; /* Space for a subtle border or marker if wanted */
  border-left: 2px solid var(--surface-color); /* Subtle grey line on the left */
  transition: border-color 0.3s ease;
}

.bio-list li:hover {
  border-left-color: var(--primary-color); /* Light up the line on hover */
}

.highlight-label {
  color: var(--primary-color); /* Orange */
  font-weight: 600;            /* Thicker than the rest of the text */
  margin-right: 5px;
}

.bio-list strong {
  color: #fff; /* White text for emphasis */
  font-weight: 400; /* Normal weight (since your base is thin) */
}

.bio-outro {
  margin-top: 2rem;
  font-style: italic;
  border-left: 3px solid var(--primary-color);
  padding-left: 1rem;
  color: var(--text-color-muted);
}

/* ---------------------------
     MOBILE RESPONSIVENESS
   --------------------------- */
@media (max-width: 768px) {
  #hero {
    flex-direction: column;
    text-align: center;
  }

  .profile-pic-container {
    margin: 0 auto 1.5rem auto;
  }
}