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

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

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

.diagnosis02-bullet {
  display: inline-block;
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
}

.diagnosis02-highlight-pink {
  color: #DA6D9E;
  font-weight: 700;
}

.diagnosis02-underline {
  text-decoration: underline;
}

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

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

@media (max-width: 768px) {
  .diagnosis02-section {
    padding: 40px 20px 60px 20px;
  }
  
  .diagnosis02-bullet {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .diagnosis02-bullet {
    font-size: 1.1rem;
  }
}

