/* Diagnosis 05 Section */
.diagnosis05-section {
  background-color: transparent;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 40px 20px 80px 20px; /* Small top padding for spacing from Diagnosis_04 */
}

/* Desktop: hide mobile title, show desktop title in left column */
.diagnosis05-title-mobile {
  display: none;
}

.diagnosis05-title-desktop {
  display: block;
  text-align: left;
  margin-bottom: 30px;
}

/* Align the image with the text content at the top */
.diagnosis05-section .moreinfo-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.diagnosis05-section .moreinfo-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  /* Tablet and below: show mobile title at top, hide desktop title in column */
  .diagnosis05-title-mobile {
    display: block;
  }
  
  .diagnosis05-title-desktop {
    display: none;
  }
}

@media (max-width: 768px) {
  .diagnosis05-section {
    padding: 40px 20px 60px 20px;
  }
}

