/* General styling for the article container */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #1a2a44; /* Dark blue background */
    color: #e0e0e0; /* Light gray text for readability */
}

/* Headings */
h1 {
    font-size: 2.5em;
    color: #ffffff; /* White for main heading */
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 1.8em;
    color: #4da8ff; /* Light blue for subheadings */
    margin-top: 30px;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.4em;
    color: #4da8ff; /* Light blue for sub-subheadings */
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Paragraphs */
p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
    color: #e0e0e0; /* Light gray for main text */
}

/* Lists */
ul, ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

ul li, ol li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #e0e0e0; /* Light gray for list items */
}

ul li strong, ol li strong {
    color: #fff111; /* Gold for emphasized text */
}    
strong {
    color: #7eec4c; /* Gold for emphasized text */    
}

/* Disclaimer */
.disclaimer {
    font-size: 0.9em;
    color: #b0b0b0; /* Lighter gray for disclaimer */
    font-style: italic;
    border-top: 1px solid #4da8ff; /* Light blue border */
    padding-top: 10px;
    margin-top: 30px;
}

/* Responsive design */
@media (max-width: 600px) {
    .article-container {
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size