.profile-header {
  position: relative;
  width: 100%;
  height: 350px; /* Adjust based on your preference */
  background-color: var(--card-bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Your specific background rules applied to the banner */
.banner-image-preserve {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  z-index: 1; /* Keeping it behind content but above background-color */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-bottom: 1px dotted var(--button-bg);
  background-color: transparent;
}

/* Profile Image Centering */
.profile-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%; /* Standard LinkedIn style */
  border: 4px solid var(--button-bg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  object-fit: cover;
  background-color: var(--card-bg);
}

/* Small "Next Section" Button */
.next-section-btn {
  background: var(--button-bg);
  color: var(--button-text-color);
  border: 1px solid var(--button-border);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.next-section-btn:hover {
  transform: scale(1.05);
}

/* Responsive adjustments for Mobile/Android */
@media (max-width: 640px) {
  .profile-header {
    height: 280px;
  }
  
  .profile-avatar {
    width: 90px;
    height: 90px;
  }
}