/* General body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Main section styling */
main {
    padding: 20px;
    width: 50%;
    margin: 0 auto;
}

/* Section headings */
section h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
}

h2 {
    margin-top: 30px;
}

/* Paragraph and list styling */
p {
    margin: 10px 0 20px;
    font-size: 1.125em;
    text-align: justify;
    line-height: 1.375;
}

ul {
    list-style-type: disc;
    margin: 10px 0 20px 20px;
}

article ul li {
    margin-bottom: 10px;
    font-size: 1.125em;
    text-align: justify;
    line-height: 1.375;
}

em {
    font-style: italic;
    color: #555;
}

/* Scroll bar for WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 12px; /* Scrollbar width */
    height: 12px; /* Horizontal scrollbar height (if needed) */
}

::-webkit-scrollbar-track {
    background: #eaeaea; /* Light gray track matches the navbar and footer background */
    border-radius: 10px; /* Rounded corners */
}

::-webkit-scrollbar-thumb {
    background: #919191; /* Blue thumb matches the active link in the navbar */
    border-radius: 10px; /* Rounded corners */
    border: 2px solid #eaeaea; /* Adds padding around the thumb for a clean look */
}

::-webkit-scrollbar-thumb:hover {
    background: #919191; /* Darker blue on hover for a subtle effect */
}

span#blue {
    color: #007bff;
}