/* Justify text for all paragraphs */
p {
    text-align: justify;
    text-justify: inter-word;
}

/* Optional: Justify text for article abstracts */
.abstract {
    text-align: justify;
    text-justify: inter-word;
}

/* Optional: Justify text for article body content */
.article-body {
    text-align: justify;
    text-justify: inter-word;
}

/* Optional: Justify text in sections like Introduction or Conclusion */
.section {
    text-align: justify;
    text-justify: inter-word;
}
