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

        body {
            font-family: Georgia, 'Times New Roman', Times, serif;
            background: linear-gradient(135deg, #990000 0%, #7a0000 100%);
            color: #000000;
            line-height: 1.6;
            min-height: 100vh;
        }

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

        header {
            background: rgba(255, 153, 0, 0.95);
            padding: 30px 20px;
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        h1 {
            color: #990000;
            font-size: 2.5em;
            text-align: center;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        article {
            background: rgba(255, 255, 255, 0.98);
            padding: 40px;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        article h2 {
            color: #990000;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 1.8em;
            border-bottom: 3px solid #FF9900;
            padding-bottom: 10px;
        }

        article h3 {
            color: #7a0000;
            margin-top: 25px;
            margin-bottom: 12px;
            font-size: 1.4em;
        }

        article h4 {
            color: #990000;
            margin-top: 20px;
            margin-bottom: 10px;
            font-size: 1.2em;
        }

        article p {
            margin-bottom: 20px;
            font-size: 1.1em;
            color: #333;
        }

        .transition-section {
            background: rgba(255, 255, 204, 0.95);
            padding: 30px 40px;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

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

        .links-section {
            background: rgba(255, 153, 0, 0.95);
            padding: 40px;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

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

        .links-section h3 {
            color: #7a0000;
            font-size: 1.5em;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: bold;
        }

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

        .links-section li {
            background: rgba(255, 255, 255, 0.9);
            padding: 12px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .links-section li:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateX(5px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .links-section a {
            color: #990000;
            text-decoration: none;
            font-size: 1.05em;
            font-weight: 500;
            display: block;
        }

        .links-section a:hover {
            color: #7a0000;
        }

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

            header {
                padding: 20px 15px;
                margin: 10px 0;
            }

            h1 {
                font-size: 1.8em;
            }

            article {
                padding: 25px 20px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

            article p {
                font-size: 1em;
            }

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

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

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

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

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

            .links-section a {
                font-size: 1em;
            }
        }

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

            article {
                padding: 20px 15px;
            }

            article h2 {
                font-size: 1.3em;
            }

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