/* aboutpage.css */

.about-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 24px 20px;
  background-color: var(--colors-table-rowbgcolor);
  border-radius: 16px;
  color: var(--colors-text-colortext);
  font-family: "Lato", Helvetica;
  line-height: 1.5;
}

/* Main title styling */
.about-content .page-title-h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--colors-text-colortext);
}

/* Section headers */
.about-content .section-h1 {
  font-size: 24px;
  font-weight: 700;
  /* margin-top: 32px; */
  margin-bottom: 14px;
  color: var(--colors-text-colortext);
  border-bottom: 1px solid var(--colors-border-color);
  padding-bottom: 6px;
}

/* Subheadings within sections */
.about-content h3 {
  font-size: 20px;
  font-weight: 600;
  /* margin-top: 20px; */
  margin-bottom: 10px;
  color: var(--colors-text-colortext);
}

/* Regular paragraphs */
/* .about-content p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.5;
} */

/* Strong text and titles in lists */
.about-content strong {
  font-weight: 600;
  color: inherit;
}

/* List styling */
.about-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
  list-style-type: disc;
}

.about-content li {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.5;
  padding-left: 6px;
}

/* Feature list items */
.about-content li strong {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 3px;
}

/* Emphasis for brand name */
.about-content strong[id^="about-page-brand"] {
  color: inherit;
}

/* Special styling for conclusion paragraphs */
.about-content #about-thankyou-text,
.about-content #about-conclusion-text {
  font-size: 17px;
  font-weight: 400;
  margin-top: 20px;
  padding: 14px;
  border-radius: 6px;
  background-color: var(--colors-bg-colorcard-secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-content {
    padding: 16px;
  }

  .about-content .page-title-h2 {
    font-size: 26px;
  }

  .about-content .section-h1 {
    font-size: 21px;
  }

  .about-content h3 {
    font-size: 18px;
  }
}

/* Intro paragraph special styling */
.about-content #about-page-intro {
  font-size: 17px;
  font-weight: 500;
  /* margin-bottom: 22px; */
  line-height: 1.5;
}

/* Vision section styling for emphasis */
/* .about-content #about-vision-text,
.about-content #about-values-text {
  font-style: italic;
  border-left: 3px solid var(--colors-border-color);
  padding-left: 14px;
} */

/* Fix for nested lists if needed */
.about-content ul ul {
  margin-top: 6px;
  margin-bottom: 0;
}

/* Additional spacing for visual sections */
/* .about-content #about-readers-section,
.about-content #about-authors-section {
  margin-top: 20px;
} */
