/* Keep sections stacked (ok to keep) */
main.container.max-container {
  display: block !important;
}

/* REMOVE your .col-md-6 override COMPLETELY */

/* Avatar */
.profile-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

/* Buttons – fine to keep */
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
  padding: 5px 15px;
  font-size: 16px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 123, 255, .5);
  transition: all .2s ease-in-out;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #0056b3;
  border-color: #0056b3;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 123, 255, .5);
}

/* Tables – unrelated, but fine */
table { width: 100%; border-collapse: collapse; margin-left: auto; margin-right: auto; }
th, td { border: 1px solid #ddd; padding: 8px; text-align: left; white-space: nowrap; }
th { background-color: #f2f2f2; }

/* Spacing helpers */
.hero { margin-bottom: 1.75rem; }