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

        body {
            background: #fff;
            font: 13px/19px Arial, Helvetica, sans-serif;
            color: #999;
            padding: 0;
            margin: 0;
        }

        #header-wrapper {
            width: 100%;
            border-bottom: 1px solid #eee;
        }

        #header-inner {
            max-width: 870px;
            height: 100px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        #logo {
            height: 100px;
            display: table;
        }

        #logo a {
            display: table-cell;
            vertical-align: middle;
            font-family: "Oswald", Arial, sans-serif;
            font-size: 24px;
            color: #000;
            text-decoration: none;
            text-transform: uppercase;
        }

        nav#primary-nav ul {
            list-style: none;
            display: flex;
            gap: 25px;
            margin: 0;
        }

        nav#primary-nav ul li {
            line-height: 45px;
        }

        nav#primary-nav ul li a {
            font-family: Arial, Helvetica, sans-serif;
            color: #999;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 13px;
            transition: color 0.3s;
        }

        nav#primary-nav ul li a:hover {
            color: #f00;
        }

        #content-wrapper {
            width: 100%;
            margin-bottom: 50px;
            min-height: 300px;
            margin-top: 50px;
        }

        .content-section {
            max-width: 870px;
            margin: auto;
            padding: 0 20px;
        }

        h1 {
            font-family: "Oswald", Arial, sans-serif;
            font-size: 50px;
            line-height: 45px;
            color: #f00;
            margin-bottom: 30px;
            text-transform: uppercase;
            font-weight: normal;
        }

        article {
            margin-bottom: 50px;
        }

        article h2 {
            font-family: "Oswald", Arial, sans-serif;
            font-size: 30px;
            line-height: 28px;
            color: #f00;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: normal;
        }

        article h3 {
            font-family: "Oswald", Arial, sans-serif;
            font-size: 25px;
            line-height: 22px;
            color: #f00;
            margin-bottom: 18px;
            text-transform: uppercase;
            font-weight: normal;
        }

        article h4 {
            font-family: "Oswald", Arial, sans-serif;
            font-size: 20px;
            line-height: 18px;
            color: #f00;
            margin-bottom: 16px;
            text-transform: uppercase;
            font-weight: normal;
        }

        article p {
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .transition-section {
            max-width: 870px;
            margin: 50px auto;
            padding: 0 20px;
        }

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

        {% if links %}
        .links-section {
            max-width: 870px;
            margin: 50px auto;
            padding: 40px 20px;
            background: #f9f9f9;
            border-top: 1px solid #e6e6e6;
            border-bottom: 1px solid #e6e6e6;
        }

        .links-section h3 {
            font-family: "Oswald", Arial, sans-serif;
            font-size: 25px;
            line-height: 22px;
            color: #000;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: normal;
        }

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

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

        .links-section ul li a {
            color: #f00;
            text-decoration: none;
            transition: color 0.3s;
        }

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

        #footer-wrapper {
            width: 100%;
            position: relative;
            bottom: 0;
            background-color: #fff;
        }

        #footer-top {
            max-width: 870px;
            margin: auto;
            padding: 50px 20px 0;
            border-top: 1px solid #eee;
        }

        #footer-bottom {
            width: 100%;
            border-top: 1px solid #eee;
            margin-top: 50px;
        }

        #footer-bottom-inner-wrapper {
            max-width: 870px;
            margin: auto;
            padding: 30px 20px;
            text-align: center;
        }

        .footer-copyright {
            margin: 0;
            font-size: 11px;
            color: #999;
        }

        @media only screen and (max-width: 767px) {
            #header-inner {
                flex-direction: column;
                height: auto;
                padding: 20px;
            }

            #logo {
                height: auto;
                margin-bottom: 20px;
            }

            nav#primary-nav ul {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            h1 {
                font-size: 35px;
                line-height: 33px;
            }

            article h2 {
                font-size: 25px;
                line-height: 23px;
            }

            article h3 {
                font-size: 20px;
                line-height: 19px;
            }

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

        @media only screen and (min-width: 768px) and (max-width: 959px) {
            #header-inner {
                flex-direction: column;
                height: auto;
                padding: 20px;
            }

            #logo {
                height: auto;
                margin-bottom: 20px;
            }

            nav#primary-nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            h1 {
                font-size: 40px;
                line-height: 37px;
            }
        }
    