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

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

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

        /* Header */
        .header {
            background: linear-gradient(135deg, #bd0030, #ff4060);
            color: #ffffff;
            padding: 40px 0;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .header h1 {
            font-family: "Times New Roman", Times, serif;
            font-size: 2.8em;
            font-style: italic;
            font-weight: normal;
            margin-bottom: 10px;
        }

        .header-subtitle {
            font-size: 1.1em;
            opacity: 0.9;
            font-weight: 300;
        }

        /* Navigation */
        .navbar {
            background-color: #0000ff;
            padding: 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .navbar-content {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .navbar a {
            color: #ffffff;
            text-decoration: none;
            padding: 15px 20px;
            display: block;
            font-size: 0.9em;
            font-weight: 500;
            transition: background-color 0.3s ease;
            border-right: 2px solid #ffffff;
        }

        .navbar a:hover {
            background-color: rgba(255,255,255,0.1);
            text-decoration: underline;
        }

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

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        h1 {
            font-size: 2.2em;
            color: #bd0030;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }

        article {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 40px;
            border-left: 4px solid #ffca18;
        }

        article p {
            margin-bottom: 20px;
            font-size: 1em;
            line-height: 1.7;
        }

        article h2, article h3, article h4 {
            color: #0000ff;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        article h2 {
            font-size: 1.4em;
            border-bottom: 2px solid #ffca18;
            padding-bottom: 8px;
        }

        article h3 {
            font-size: 1.2em;
        }

        article a {
            color: #0000ff;
            text-decoration: none;
            font-weight: 500;
        }

        article a:hover {
            text-decoration: underline;
        }

        /* Transition section */
        .transition-section {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            padding: 30px;
            margin: 40px 0;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }

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

        /* Links Section */
        .links-section {
            background-color: #f8f9fa;
            padding: 40px 30px;
            border-radius: 8px;
            border: 2px solid #ffca18;
            margin-top: 40px;
        }

        .links-section h3 {
            color: #bd0030;
            font-size: 1.3em;
            margin-bottom: 20px;
            font-weight: bold;
            padding-bottom: 8px;
            border-bottom: 2px solid #ffca18;
        }

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

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

        .links-section li::before {
            content: "▶";
            color: #0000ff;
            position: absolute;
            left: 0;
            top: 0;
        }

        .links-section a {
            color: #0000ff;
            text-decoration: none;
            font-size: 0.95em;
            font-weight: 500;
            transition: color 0.3s ease;
        }

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

        /* Footer */
        .footer {
            background-color: #0000ff;
            color: #ffffff;
            padding: 30px 0;
            text-align: center;
            margin-top: 60px;
        }

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

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.9em;
            padding: 8px 0;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        .copyright {
            font-size: 0.8em;
            opacity: 0.8;
            margin-top: 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2em;
            }

            .navbar-content {
                flex-direction: column;
            }

            .navbar a {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.3);
                text-align: center;
            }

            .links-section ul {
                columns: 1;
            }

            .main-content {
                padding: 20px 15px;
            }

            article {
                padding: 20px;
            }

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

            .footer-links {
                flex-direction: column;
                gap: 15px;
            }

            h1 {
                font-size: 1.8em;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 25px 0;
            }

            .header h1 {
                font-size: 1.8em;
            }

            article {
                padding: 15px;
                margin-bottom: 25px;
            }

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