@import url('inline-font1_1');

        :root {
            --primary-color: #0D1B2A; /* Dark Blue */
            --secondary-color: #1B263B; /* Slightly Lighter Blue */
            --accent-color-1: #415A77; /* Grey Blue */
            --accent-color-2: #778DA9; /* Lighter Grey Blue */
            --text-color: #E0E1DD; /* Off White */
            --heading-color: #FFFFFF; /* White */
            --link-color: #87CEEB; /* Sky Blue */
            --font-body: 'Lato', sans-serif;
            --font-heading: 'Montserrat', sans-serif;
            --font-alt: 'Roboto', sans-serif;
        }

        body {
            font-family: var(--font-body);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            background-color: var(--primary-color);
            color: var(--text-color);
            font-size: 16px; /* Base font size */
        }

        .container {
            max-width: 900px;
            margin: 20px auto;
            padding: 20px;
            background-color: var(--secondary-color);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            border-radius: 8px;
        }

        h1, h2, h3 {
            font-family: var(--font-heading);
            color: var(--heading-color);
            margin-bottom: 0.8em;
            line-height: 1.3;
            border-bottom: 2px solid var(--accent-color-1);
            padding-bottom: 10px;
        }

        h1 {
            font-size: 2.8em;
            text-align: center;
            color: var(--link-color); /* Make main title stand out */
            border-bottom: none;
            margin-bottom: 1em;
        }

        h2 {
            font-size: 2.2em;
            color: var(--accent-color-2);
            margin-top: 1.8em;
        }

        h3 {
            font-size: 1.6em;
            color: var(--accent-color-2);
            border-bottom: 1px dotted var(--accent-color-1);
            margin-top: 1.5em;
        }

        p {
            margin-bottom: 1.2em;
            text-align: justify;
        }

        a {
            color: var(--link-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover, a:focus {
            color: #B0E0E6; /* Lighter Sky Blue on hover */
            text-decoration: underline;
        }

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

        li {
            margin-bottom: 0.6em;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--accent-color-2);
            margin-top: -15px; /* Adjust spacing after image */
            margin-bottom: 30px;
            font-size: 0.9em;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                font-size: 15px;
            }
            .container {
                margin: 10px;
                padding: 15px;
            }
            h1 {
                font-size: 2.2em;
            }
            h2 {
                font-size: 1.8em;
            }
            h3 {
                font-size: 1.4em;
            }
            p {
                line-height: 1.7;
            }
            ul, ol {
                 padding-left: 20px;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 14px;
            }
            h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.5em;
            }
            h3 {
                font-size: 1.2em;
            }
            p {
                line-height: 1.6;
            }
        }