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

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

        header {
            background-color: #043434;
            padding: 20px 0;
            border-bottom: 3px solid #306f6c;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .site-name {
            color: #E1E9E9;
            font-size: 32px;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 1px;
        }

        .site-name:hover {
            color: #fff;
        }

        nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        nav a {
            color: #E1E9E9;
            text-decoration: none;
            padding: 8px 16px;
            border: 1px solid #306f6c;
            border-radius: 4px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        nav a:hover {
            background-color: #306f6c;
            color: #fff;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        h1 {
            color: #043434;
            font-size: 36px;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #306f6c;
        }

        article {
            background-color: #f9f9f9;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 4px solid #306f6c;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        article h2 {
            color: #043434;
            font-size: 28px;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        article h3 {
            color: #306f6c;
            font-size: 22px;
            margin-top: 20px;
            margin-bottom: 12px;
        }

        article h4 {
            color: #663300;
            font-size: 18px;
            margin-top: 15px;
            margin-bottom: 10px;
        }

        article p {
            margin-bottom: 15px;
            font-size: 14px;
            color: #333;
        }

        .transition-section {
            background-color: #E1E9E9;
            padding: 30px;
            margin-bottom: 40px;
            border-radius: 5px;
        }

        .transition-section p {
            font-size: 15px;
            color: #043434;
            margin-bottom: 15px;
        }

        {% if links %}
        .links-section {
            background-color: #f5f5f5;
            padding: 40px 30px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .links-section h2 {
            color: #043434;
            font-size: 28px;
            margin-bottom: 25px;
            text-align: center;
        }

        .links-section h3 {
            color: #306f6c;
            font-size: 20px;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #306f6c;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px 30px;
            margin-bottom: 25px;
        }

        .links-section li {
            padding-left: 20px;
            position: relative;
        }

        .links-section li:before {
            content: "●";
            color: #306f6c;
            position: absolute;
            left: 0;
            font-size: 12px;
        }

        .links-section a {
            color: #3C4F7D;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

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

        footer {
            background-color: #E1E9E9;
            padding: 20px 0;
            margin-top: 60px;
            border-top: 3px solid #306f6c;
        }

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

        .footer-menu {
            margin-bottom: 15px;
            font-size: 13px;
        }

        .footer-menu a {
            color: #3C4F7D;
            text-decoration: none;
            padding: 0 10px;
            border-right: 1px solid #306f6c;
        }

        .footer-menu a:last-child {
            border-right: none;
        }

        .footer-menu a:hover {
            color: #663300;
        }

        .copyright {
            background-color: #043434;
            color: #E1E9E9;
            padding: 15px 20px;
            font-size: 11px;
            text-align: center;
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .site-name {
                font-size: 24px;
                margin-bottom: 15px;
            }

            nav {
                width: 100%;
            }

            nav a {
                flex: 1;
                text-align: center;
                font-size: 12px;
                padding: 8px 10px;
            }

            h1 {
                font-size: 28px;
            }

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .footer-menu a {
                display: inline-block;
                padding: 5px 8px;
                border-right: none;
                border-bottom: 1px solid #306f6c;
            }
        }

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

            h1 {
                font-size: 24px;
            }

            article {
                padding: 15px;
            }

            .transition-section {
                padding: 20px;
            }

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