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

        body {
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #808080 0%, #6a6a6a 100%);
            color: #333;
            line-height: 1.6;
            padding: 20px;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border: 4px solid #c0c0c0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            overflow: hidden;
        }

        header {
            background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
            padding: 30px 20px;
            border-bottom: 5px solid #FF0000;
        }

        .header-flags {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 900px;
            margin: 0 auto 20px;
            gap: 20px;
        }

        .flag-placeholder {
            width: 80px;
            height: 60px;
            background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
            border-radius: 4px;
            flex-shrink: 0;
        }

        .header-title {
            text-align: center;
            flex-grow: 1;
        }

        .welcome-text {
            color: #FF0000;
            font-size: 2em;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .org-name {
            color: #800000;
            font-size: 1.5em;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .org-name-fr {
            color: #800000;
            font-size: 1.2em;
            font-weight: bold;
        }

        h1 {
            color: #800000;
            font-size: 2.2em;
            text-align: center;
            padding: 40px 20px 20px;
            font-weight: bold;
        }

        article {
            padding: 20px 40px;
            font-size: 1.1em;
            color: #333;
        }

        article p {
            margin-bottom: 20px;
            text-align: center;
        }

        article h2, article h3, article h4 {
            color: #800000;
            margin: 25px 0 15px;
            text-align: center;
        }

        .notice-box {
            background: #000000;
            color: #FFFF00;
            padding: 30px;
            margin: 30px 20px;
            border: 4px solid #FF0000;
            border-radius: 8px;
        }

        .notice-box h2 {
            color: #FF0000;
            text-align: center;
            font-size: 1.8em;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #FF0000;
        }

        .notice-box p {
            margin-bottom: 15px;
            font-weight: bold;
            line-height: 1.8;
        }

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

        .transition-section p {
            margin-bottom: 15px;
            text-align: center;
            font-size: 1.05em;
        }

        .links-section {
            padding: 40px;
            background: #ffffff;
        }

        .links-section h2 {
            color: #800000;
            text-align: center;
            font-size: 1.8em;
            margin-bottom: 30px;
            font-style: italic;
        }

        .links-section h3 {
            color: #800000;
            font-size: 1.3em;
            margin: 25px 0 15px;
            font-weight: bold;
        }

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

        .links-section li {
            padding: 8px 0;
        }

        .links-section a {
            color: #0000FF;
            text-decoration: none;
            font-size: 1.05em;
            transition: color 0.3s ease;
        }

        .links-section a:hover {
            color: #FF0000;
            text-decoration: underline;
        }

        footer {
            background: #f5f5f5;
            padding: 20px;
            text-align: center;
            color: #666;
            font-size: 0.9em;
            border-top: 3px solid #c0c0c0;
        }

        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            .header-flags {
                flex-direction: column;
                gap: 15px;
            }

            .welcome-text {
                font-size: 1.5em;
            }

            .org-name {
                font-size: 1.2em;
            }

            .org-name-fr {
                font-size: 1em;
            }

            h1 {
                font-size: 1.8em;
                padding: 30px 15px 15px;
            }

            article {
                padding: 15px 20px;
                font-size: 1em;
            }

            .notice-box {
                padding: 20px 15px;
                margin: 20px 10px;
            }

            .notice-box h2 {
                font-size: 1.4em;
            }

            .transition-section {
                padding: 20px;
            }

            .links-section {
                padding: 20px;
            }

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

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

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

        @media (max-width: 480px) {
            .welcome-text {
                font-size: 1.2em;
            }

            .org-name {
                font-size: 1em;
            }

            .org-name-fr {
                font-size: 0.9em;
            }

            h1 {
                font-size: 1.5em;
            }

            .notice-box h2 {
                font-size: 1.2em;
            }
        }
    