/* Endometriosis 02 Section */
.endo02-section {
  background-color: transparent;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
}

.endo02-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.endo02-title {
  font-size: 4.5rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: #004aad;
  margin: 0 0 60px 0;
  line-height: 1.2;
  text-align: center;
}

.endo02-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.endo02-left,
.endo02-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.endo02-text {
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  color: #333;
  margin: 0;
  text-align: justify;
}

.endo02-highlight-blue {
  color: #344bf4;
  font-weight: 700;
}

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

.endo02-bold {
  font-weight: 700;
  color: #333;
}

.endo02-quote {
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  color: #333;
  margin: 0;
  margin-top: 20px;
}

.endo02-quote em {
  font-style: italic;
}

.endo02-author {
  color: #344bf4;
  font-weight: 700;
  font-style: normal;
}

/* Responsive Design */
@media (max-width: 992px) {
  .endo02-title {
    font-size: 3.5rem;
    margin-bottom: 40px;
  }

  .endo02-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .endo02-text,
  .endo02-quote {
    font-size: 1.25rem;
  }
}

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

  .endo02-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }

  .endo02-content {
    gap: 30px;
  }

  .endo02-text,
  .endo02-quote {
    text-align: left;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .endo02-title {
    font-size: 2.2rem;
  }

  .endo02-text,
  .endo02-quote {
    font-size: 1.1rem;
  }
}

