/* Diagnosis 01 Section */
.diagnosis01-section {
  background-color: transparent;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 80px 20px 0 20px; /* Standard top padding, no bottom padding for better flow to Diagnosis_02 */
}

.diagnosis01-section .moreinfo-title {
  margin-bottom: 20px;
}

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

.diagnosis01-title-desktop {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

/* Align the image with the text content (excluding title) */
.diagnosis01-section .moreinfo-left {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.diagnosis01-section .moreinfo-image-container {
  margin-top: 85px; /* Align with subtitle text height (title + title margin-bottom) */
}

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

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

.diagnosis01-italic {
  font-style: italic;
  margin-top: 24px;
}

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

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

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

