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

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

        .header {
            background-color: #fff;
            border-bottom: 3px solid #af3a29;
            padding: 20px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .site-title {
            color: #013334;
            font-size: 2.5em;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
        }

        nav {
            background-color: #013334;
            padding: 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            display: block;
            color: #fff;
            text-decoration: none;
            padding: 15px 20px;
            transition: background-color 0.3s ease;
        }

        nav ul li a:hover {
            background-color: #af3a29;
        }

        .banner {
            background-color: #af3a29;
            height: 20px;
            margin-bottom: 20px;
        }

        main {
            background-color: #fff;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            min-height: 400px;
        }

        h1 {
            color: #013334;
            font-size: 2.2em;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #af3a29;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            color: #af3a29;
            font-size: 1.8em;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        article h3 {
            color: #013334;
            font-size: 1.4em;
            margin-top: 20px;
            margin-bottom: 12px;
        }

        article p {
            margin-bottom: 15px;
            line-height: 1.8;
            color: #444;
        }

        .transition-section {
            background-color: #f9f9f9;
            padding: 30px;
            border-left: 4px solid #af3a29;
            margin: 40px 0;
            border-radius: 5px;
        }

        .transition-section p {
            color: #555;
            line-height: 1.8;
        }

        {% if links %}
        .links-section {
            background-color: #ebebeb;
            padding: 40px 30px;
            border-radius: 10px;
            margin-top: 40px;
        }

        .links-section h3 {
            color: #af3a29;
            font-size: 1.6em;
            margin-bottom: 20px;
            margin-top: 30px;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

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

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

        .links-section ul li a {
            color: #013334;
            text-decoration: none;
            display: inline-block;
            padding: 8px 0;
            transition: color 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .links-section ul li a:hover {
            color: #af3a29;
            border-bottom: 1px solid #af3a29;
        }
        {% endif %}

        footer {
            background-color: #013334;
            color: #fff;
            text-align: center;
            padding: 30px 20px;
            margin-top: 50px;
        }

        footer p {
            margin-bottom: 10px;
        }

        footer a {
            color: #fff;
            text-decoration: underline;
        }

        footer a:hover {
            color: #af3a29;
        }

        @media (max-width: 768px) {
            .site-title {
                font-size: 1.8em;
            }

            h1 {
                font-size: 1.8em;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #024445;
            }

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

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

            .transition-section {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .site-title {
                font-size: 1.5em;
            }

            h1 {
                font-size: 1.5em;
            }

            main {
                padding: 20px 15px;
            }

            .links-section {
                padding: 25px 15px;
            }
        }
    