/* Symptoms 01 Section */
.symptoms01-section {
  background-color: #f5f5f5;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 80px 20px 0 20px; /* No bottom padding for better flow to Diagnosis_01 */
}

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

.symptoms01-title-hidden {
  visibility: hidden;
  pointer-events: none;
}

.symptoms01-section .moreinfo-image {
  box-shadow: none;
  border-radius: 8px;
}

.symptoms01-list {
  list-style-type: disc;
  padding-left: 40px;
  margin: 24px 0;
}

.symptoms01-list-item {
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}

.symptoms01-list-item:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .symptoms01-list-item {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .symptoms01-section {
    padding: 60px 20px 0 20px;
  }
  
  .symptoms01-title-hidden {
    display: none;
  }
  
  .symptoms01-list {
    padding-left: 30px;
  }
  
  .symptoms01-list-item {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .symptoms01-list {
    padding-left: 20px;
  }
  
  .symptoms01-list-item {
    font-size: 1.1rem;
  }
}

