/* --- Google Font Import --- */
/* This line imports the 'Nunito Sans' font, which closely matches the one in the image. */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700&display=swap');

/* --- Main Article Container --- */
/* This targets the main div and sets the overall font styles. */
.article-content {
    font-family: "Manrope", Manrope;
    font-size: 18px; /* Base font size */
    line-height: 30px; /* Generous line spacing for readability */
    color: #787878; /* A dark gray for the main text, softer than pure black */
    max-width: 100%; /* Optional: Constrains width for better reading on wide screens */
}

/* --- Headings --- */
.article-content h2 {
    text-align: center;
    font-size: 25px; /* Large main heading */
    font-weight: 450; /* Bold */
    color: #333; /* Slightly darker for the main heading */
    margin-bottom: 20px;
}

.article-content h3 {
    font-size: 20px; /* Subheading */
    font-weight: 600; /* Bold */
    margin-top: 40px;
    margin-bottom: 15px;
}

/* --- Paragraphs and Lists --- */
.article-content p {
    margin-bottom: 24px; /* Space between paragraphs */
}

.article-content ul {
    list-style-type: disc; /* Standard bullet points */
    padding-left: 25px; /* Indentation for the list */
    margin-bottom: 24px;
}

.article-content li {
    padding-left: 8px; /* Space between bullet and text */
    margin-bottom: 12px; /* Space between each list item */
}

/* --- Color Utility Class --- */
/* This class makes any text inside it green. */
.article-content .text-green {
    color: #1B5AA7;
}