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

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

        #container {
            max-width: 1005px;
            margin: 20px auto;
            background-color: #fff;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        }

        header {
            background: linear-gradient(135deg, #BE0027 0%, #002377 100%);
            padding: 40px 20px;
            text-align: center;
            color: #fff;
        }

        h1 {
            font-size: 2.5em;
            font-weight: bold;
            color: #fff;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        main {
            display: flex;
            flex-wrap: wrap;
            padding: 0;
        }

        article {
            flex: 1 1 100%;
            padding: 30px;
            background-color: #fff;
        }

        article h2 {
            font-size: 1.75em;
            color: #BE0027;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: bold;
            line-height: 1.3;
        }

        article h3 {
            font-size: 1.4em;
            color: #0C71B5;
            margin-top: 20px;
            margin-bottom: 12px;
            font-weight: bold;
            line-height: 1.3;
        }

        article h4 {
            font-size: 1.2em;
            color: #002377;
            margin-top: 18px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        article p {
            font-size: 1em;
            line-height: 1.7;
            color: #333;
            margin-bottom: 15px;
        }

        article ul {
            margin: 15px 0 20px 30px;
        }

        article ul li {
            list-style-type: square;
            margin-bottom: 10px;
            line-height: 1.5;
            color: #333;
        }

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

        article a:hover {
            color: #0110A3;
        }

        .transition-section {
            padding: 30px;
            background-color: #f9f9f9;
            border-top: 3px solid #BE0027;
            border-bottom: 3px solid #BE0027;
        }

        .transition-section p {
            font-size: 1.05em;
            line-height: 1.7;
            color: #333;
            margin-bottom: 15px;
        }

        .links-section {
            padding: 40px 30px;
            background-color: #fff;
        }

        .links-section h2 {
            font-size: 2em;
            color: #002377;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }

        .links-section h3 {
            font-size: 1.3em;
            color: #BE0027;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: bold;
            padding-bottom: 8px;
            border-bottom: 2px dotted #CBCCCE;
        }

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

        .links-section ul li {
            margin-bottom: 12px;
            break-inside: avoid;
            padding-left: 20px;
            position: relative;
        }

        .links-section ul li:before {
            content: "▪";
            position: absolute;
            left: 0;
            color: #BE0027;
            font-size: 1.2em;
        }

        .links-section ul li a {
            color: #BE0027;
            text-decoration: underline;
            font-size: 1em;
            line-height: 1.5;
        }

        .links-section ul li a:hover {
            color: #0110A3;
            text-decoration: underline;
        }

        footer {
            background-color: #BE0027;
            padding: 15px 20px;
            text-align: center;
            color: #fff;
        }

        footer p {
            margin: 0;
            font-size: 0.95em;
        }

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

        footer a:hover {
            text-decoration: none;
        }

        @media (max-width: 768px) {
            #container {
                margin: 10px;
            }

            h1 {
                font-size: 1.8em;
            }

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.25em;
            }

            .transition-section {
                padding: 20px;
            }

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

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

            .links-section h2 {
                font-size: 1.6em;
            }
        }

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

            article {
                padding: 15px;
            }

            article h2 {
                font-size: 1.3em;
            }

            article h3 {
                font-size: 1.15em;
            }

            .links-section h2 {
                font-size: 1.4em;
            }

            .links-section h3 {
                font-size: 1.15em;
            }
        }
    