.elementor-20138 .elementor-element.elementor-element-1d98a28{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-9adcc3e */.article-container {
    max-width: 900px; /* Adjust as needed, based on observation */
    margin: 40px auto; /* Center the container with top/bottom margin */
    padding: 20px;
}

h1 {
    font-size: 2.5em; /* Larger size for main title */
    color: #111; /* Darker color for headings */
    margin-bottom: 0.8em;
    text-align: center; /* Center align main title like reference */
}

h2 {
    font-size: 1.8em;
    color: #111;
    margin-top: 1.5em;
    margin-bottom: 0.6em;
    border-bottom: 1px solid #eee; /* Optional: add a subtle separator */
    padding-bottom: 0.3em;
}

h3 {
    font-size: 1.4em;
    color: #111;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
}

p {
    font-size: 1.1em; /* Slightly larger than default for readability */
    margin-bottom: 1.2em;
    text-align: left; /* Text within paragraphs is left-aligned */
}

ol,
ul {
    margin-left: 20px;
    margin-bottom: 1.2em;
    padding-left: 20px;
}

li {
    margin-bottom: 0.5em;
}

strong {
    font-weight: bold;
}

figure {
    margin: 2em 0; /* Add space around figures */
    text-align: center; /* Center the content (image and caption) */
}

figure img {
    max-width: 80%; /* Make image responsive, adjust percentage as needed */
    height: auto;
    display: block; /* Helps with centering */
    margin: 0 auto; /* Center the image */
}

figure figcaption {
    font-size: 0.9em;
    color: #555; /* Lighter color for caption */
    margin-top: 0.5em;
    text-align: center;
}

a {
    color: #007bff; /* Standard blue link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.references {
    margin-top: 3em;
    padding-top: 1em;
    border-top: 1px solid #eee;
    font-size: 0.9em;
}

.references ul {
    list-style-type: none; /* Remove bullets for references */
    padding-left: 0;
}

.references li {
    margin-bottom: 0.8em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-container {
        margin: 20px auto;
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    p {
        font-size: 1em;
    }

    figure img {
        max-width: 100%; /* Use full width on smaller screens */
    }
}/* End custom CSS */