
        @font-face {
            font-family: 'instanterbold';
            font-weight: normal;
            font-style: normal;
        }

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

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            font-size: 15px;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'instanterbold', Arial, sans-serif;
            color: #0094aa;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        h1 {
            font-size: 35px;
            margin-top: 30px;
        }

        h2 {
            font-size: 28px;
        }

        h3 {
            font-size: 21px;
        }

        a {
            color: #f0800e;
            font-weight: bold;
            text-decoration: none;
        }

        a:hover {
            color: #d46b00;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .navbar {
            background-color: #0094aa;
            padding: 8px 0;
            margin-bottom: 15px;
        }

        .navbar .container {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .navbar-nav {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .navbar-nav li {
            margin-left: 15px;
        }

        .navbar-nav a {
            color: white;
            font-weight: normal;
            padding: 5px 10px;
            display: block;
        }

        .navbar-nav a:hover {
            background-color: #008194;
        }

        .logo-section {
            text-align: center;
            padding: 25px 0;
        }

        .logo-section h1 {
            margin: 0;
        }

        .main-nav {
            background-color: #f0800e;
            margin-bottom: 30px;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            max-width: 1170px;
            margin: 0 auto;
            padding: 0;
        }

        .main-nav li {
            flex: 1 1 25%;
            text-align: center;
        }

        .main-nav a {
            display: block;
            padding: 10px;
            color: white;
            font-size: 20px;
            font-family: 'instanterbold', Arial, sans-serif;
            text-shadow: 1px 1px 0px rgba(0, 0, 0, 1);
            font-weight: normal;
        }

        .main-nav a:hover {
            background-color: #da7815;
        }

        .container {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .content-wrapper {
            margin-top: 50px;
            margin-bottom: 50px;
        }

        article {
            margin-bottom: 40px;
        }

        article p {
            margin-bottom: 20px;
        }

        article ul, article ol {
            margin-left: 30px;
            margin-bottom: 20px;
        }

        article li {
            margin-bottom: 8px;
        }

        .transition-section {
            background-color: #f7e5d3;
            border-left: 8px solid #f0800e;
            padding: 20px 30px;
            margin-bottom: 40px;
        }

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

        {% if links %}
        .links-section {
            background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNkYPhfDwAChwGA60e6kgAAAABJRU5ErkJggg==) #dbedef repeat-x top left;
            padding: 60px 0 30px;
            margin-top: 60px;
        }

        .links-section h2 {
            text-align: left;
            margin-bottom: 30px;
            font-size: 28px;
        }

        .links-section h3 {
            color: #0094aa;
            font-size: 21px;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        .links-columns {
            column-count: 2;
            column-gap: 30px;
        }

        .links-columns ul {
            list-style: none;
            margin-bottom: 30px;
            break-inside: avoid;
        }

        .links-columns li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .links-columns li:before {
            content: "›";
            position: absolute;
            left: 0;
            color: #f0800e;
            font-weight: bold;
        }

        .links-columns a {
            font-weight: normal;
        }
        {% endif %}

        .footer {
            background-color: #2d6670;
            color: white;
            padding: 40px 0 30px;
            margin-top: 80px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer-col {
            flex: 1 1 30%;
            margin-bottom: 20px;
            min-width: 250px;
        }

        .footer a {
            color: white;
            font-weight: normal;
        }

        .footer a:hover {
            color: #f0800e;
        }

        .footer p {
            margin-bottom: 10px;
        }

        .footer-logos {
            list-style: none;
            display: flex;
            margin-top: 20px;
        }

        .footer-logos li {
            margin-right: 15px;
        }

        .footer-small {
            font-size: 12px;
            margin-top: 15px;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 24px;
            }

            h3 {
                font-size: 18px;
            }

            .navbar-nav {
                flex-direction: column;
            }

            .navbar-nav li {
                margin-left: 0;
                margin-bottom: 5px;
            }

            .main-nav li {
                flex: 1 1 50%;
            }

            .main-nav a {
                font-size: 18px;
                padding: 8px;
            }

            .content-wrapper {
                margin-top: 30px;
            }

            {% if links %}
            .links-columns {
                column-count: 1;
            }
            {% endif %}

            .footer-col {
                flex: 1 1 100%;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 24px;
            }

            .main-nav li {
                flex: 1 1 100%;
            }
        }
    