
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f4f4f4;
        }

        #backgroundColor {
            background-color: #fff;
        }

        #masterWrapper {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        #hd {
            background-color: #fff;
            border-bottom: 3px solid #f7941d;
        }

        #masterLogoArea {
            padding: 20px;
            background-color: #fff;
        }

        #Menu {
            background-color: #2c5f8d;
        }

        #masterTopBarAuxiliary {
            background-color: #1e4366;
            padding: 10px 20px;
            color: #fff;
            font-size: 14px;
        }

        #masterTopBarAuxiliary ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        #masterTopBarAuxiliary a {
            color: #fff;
            text-decoration: none;
        }

        #masterTopBarAuxiliary a:hover {
            text-decoration: underline;
        }

        #masterTopBarAuxiliary hr {
            border: none;
            width: 1px;
            height: 14px;
            background-color: #fff;
        }

        #SimpleSearchBlock {
            margin-top: 10px;
        }

        #ctl00_NavPanel {
            background-color: #2c5f8d;
        }

        .navigation-menu {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }

        .navigation-menu > li {
            position: relative;
        }

        .navigation-menu > li > a {
            display: block;
            padding: 15px 20px;
            color: #fff;
            text-decoration: none;
            background-color: #2c5f8d;
            border-right: 1px solid #1e4366;
        }

        .navigation-menu > li > a:hover {
            background-color: #1e4366;
        }

        #bd {
            background-color: #fff;
        }

        #masterContentArea {
            padding: 30px 20px;
        }

        h1 {
            color: #2c5f8d;
            font-size: 2em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f7941d;
        }

        article {
            margin-bottom: 30px;
            line-height: 1.8;
        }

        article h2 {
            color: #2c5f8d;
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 1.5em;
        }

        article h3 {
            color: #2c5f8d;
            margin-top: 20px;
            margin-bottom: 12px;
            font-size: 1.3em;
        }

        article p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .transition-section {
            background-color: #f9f9f9;
            padding: 20px;
            margin: 30px 0;
            border-left: 4px solid #f7941d;
        }

        .transition-section p {
            margin-bottom: 10px;
        }

        {% if links %}
        .links-section {
            background-color: #fafafa;
            padding: 30px 20px;
            margin-top: 30px;
            border-top: 3px solid #2c5f8d;
        }

        .links-section h2 {
            color: #2c5f8d;
            margin-bottom: 20px;
            font-size: 1.8em;
        }

        .links-section h3 {
            color: #1e4366;
            margin-top: 25px;
            margin-bottom: 12px;
            font-size: 1.3em;
        }

        .links-section ul {
            columns: 2;
            column-gap: 30px;
            list-style: none;
            margin-bottom: 20px;
        }

        .links-section li {
            margin-bottom: 8px;
            break-inside: avoid;
        }

        .links-section a {
            color: #2c5f8d;
            text-decoration: none;
            padding: 3px 0;
            display: inline-block;
        }

        .links-section a:hover {
            color: #f7941d;
            text-decoration: underline;
        }
        {% endif %}

        #masterFooterCopyright {
            background-color: #1e4366;
            color: #fff;
            padding: 20px;
            text-align: center;
            margin-top: 40px;
        }

        #masterFooterCopyright a {
            color: #f7941d;
            text-decoration: none;
        }

        #masterFooterCopyright a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            #masterTopBarAuxiliary ul {
                flex-direction: column;
                gap: 8px;
            }

            .navigation-menu {
                flex-direction: column;
            }

            .navigation-menu > li > a {
                border-right: none;
                border-bottom: 1px solid #1e4366;
            }

            h1 {
                font-size: 1.6em;
            }

            article h2 {
                font-size: 1.3em;
            }

            article h3 {
                font-size: 1.1em;
            }

            {% if links %}
            .links-section ul {
                columns: 1;
            }
            {% endif %}
        }

        @media (max-width: 480px) {
            #masterContentArea {
                padding: 20px 15px;
            }

            h1 {
                font-size: 1.4em;
            }

            {% if links %}
            .links-section {
                padding: 20px 15px;
            }
            {% endif %}
        }
    