.bio-image {
	/* don’t force width/height; let the image size itself */
  width: auto;
  height: auto;

  /* but never let it get wider than 100px… */
  max-width: 100px;
  /* …and never let it get taller than 100px */
  max-height: 50px;

  /* optionally, to remove any little gaps in some browsers */
  display: inline-flex;
  margin: 2px;
	
}

/* Responsive 16:9 PDF embed */
.pdf-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.pdf-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 992px) {
  .overlap-form {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
    width: 60%;
    z-index: 2;
    box-shadow: 0 0 40px rgba(0,0,0,0.08);
  }
}

/* Expandable Contact Form */
#contact-form-expanded {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
}

#contact-form-expanded.show {
  opacity: 1;
  transform: translateY(0);
}

#contact-intro {
  transition: all 0.3s ease-in-out;
}

#contact-intro.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}


