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

        body {
            font-family: "futura-pt", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.625;
            color: #000;
            background-color: #fff;
            -webkit-font-smoothing: antialiased;
        }

        .site-header {
            background-color: #efeeee;
            border-bottom: 1px solid #005696;
            padding: 20px 0;
            position: relative;
        }

        .header-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .site-title {
            font-family: "futura-pt", sans-serif;
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 1px;
            line-height: 1.2;
            color: #005696;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .site-description {
            font-size: 16px;
            color: #666;
            font-weight: 400;
        }

        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        h1 {
            font-family: "futura-pt", sans-serif;
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: 1px;
            color: #005696;
            text-transform: uppercase;
            margin-bottom: 40px;
            text-align: center;
        }

        article h2 {
            font-family: "futura-pt", sans-serif;
            font-size: 30px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: 1px;
            color: #005696;
            text-transform: uppercase;
            margin: 40px 0 20px;
        }

        article h3 {
            font-family: "futura-pt", sans-serif;
            font-size: 24px;
            font-weight: 700;
            line-height: 1.2;
            color: #005696;
            margin: 30px 0 15px;
        }

        article h4 {
            font-family: "futura-pt", sans-serif;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.2;
            color: #005696;
            margin: 25px 0 12px;
        }

        article p {
            margin: 0 0 25px;
            line-height: 1.625;
        }

        article ul,
        article ol {
            margin: 0 0 25px 40px;
        }

        article li {
            margin-bottom: 8px;
            list-style-type: disc;
        }

        article ol li {
            list-style-type: decimal;
        }

        article a {
            color: #005696;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        article a:hover {
            color: #034677;
            text-decoration: underline;
        }

        .transition-section {
            background-color: #f5f5f5;
            padding: 40px;
            margin: 50px 0;
            border-radius: 3px;
        }

        .transition-section p {
            margin-bottom: 20px;
            line-height: 1.625;
        }

        .transition-section p:last-child {
            margin-bottom: 0;
        }

        {% if links %}
        .links-section {
            background-color: #e6e1e1;
            padding: 60px 40px;
            margin: 50px 0 0;
        }

        .links-section h3 {
            font-family: "futura-pt", sans-serif;
            font-size: 24px;
            font-weight: 700;
            line-height: 1.2;
            color: #005696;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .links-section ul {
            list-style: none;
            margin: 0 0 40px 0;
            padding: 0;
            column-count: 2;
            column-gap: 30px;
        }

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

        .links-section a {
            color: #005696;
            text-decoration: none;
            transition: all 0.2s ease;
            display: inline-block;
            padding: 5px 0;
        }

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

        .site-footer {
            background-color: #005696;
            color: #fff;
            padding: 40px 20px;
            text-align: center;
            margin-top: 60px;
        }

        .site-footer p {
            font-family: "futura-pt", sans-serif;
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 10px;
            font-weight: 400;
        }

        .site-footer p:last-child {
            margin-bottom: 0;
        }

        @media screen and (max-width: 768px) {
            .site-title {
                font-size: 22px;
            }

            .site-description {
                font-size: 14px;
            }

            h1 {
                font-size: 32px;
                margin-bottom: 30px;
            }

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

            article h4 {
                font-size: 18px;
            }

            .main-content {
                padding: 40px 15px;
            }

            .transition-section {
                padding: 25px 20px;
                margin: 30px 0;
            }

            {% if links %}
            .links-section {
                padding: 40px 20px;
                margin: 30px 0 0;
            }

            .links-section ul {
                column-count: 1;
            }

            .links-section h3 {
                font-size: 20px;
                margin-bottom: 15px;
            }
            {% endif %}

            .site-footer {
                padding: 30px 15px;
                margin-top: 40px;
            }
        }

        @media screen and (max-width: 480px) {
            body {
                font-size: 16px;
            }

            h1 {
                font-size: 26px;
            }

            article h2 {
                font-size: 22px;
            }

            .site-title {
                font-size: 20px;
            }
        }
    