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

        body {
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #333;
            background-color: #f4f6f7;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fff;
            border-radius: 4px;
            padding: 30px;
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.15);
        }

        header {
            background: #dcdcdc;
            padding: 15px 0;
            margin: -30px -30px 30px -30px;
            border-radius: 4px 4px 0 0;
        }

        h1 {
            font-size: 32px;
            line-height: 1.3;
            color: #98012e;
            margin: 0 0 20px 0;
            padding: 0 30px;
            font-weight: bold;
        }

        article {
            margin-bottom: 30px;
        }

        article h2 {
            font-size: 26px;
            line-height: 1.3;
            color: #333;
            margin: 24px 0 12px 0;
            font-weight: bold;
        }

        article h3 {
            font-size: 22px;
            line-height: 1.3;
            color: #333;
            margin: 20px 0 10px 0;
            font-weight: bold;
        }

        article h4 {
            font-size: 18px;
            line-height: 1.3;
            color: #333;
            margin: 18px 0 9px 0;
            font-weight: bold;
        }

        article p {
            margin: 0 0 15px 0;
            line-height: 1.8;
        }

        article a {
            color: #98012e;
            text-decoration: none;
            font-weight: bold;
        }

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

        article ul, article ol {
            margin: 0 0 15px 25px;
        }

        article li {
            margin-bottom: 8px;
            line-height: 1.8;
        }

        article strong {
            font-weight: bold;
        }

        article em {
            font-style: italic;
        }

        .transition-section {
            margin: 30px 0;
            padding: 20px;
            background-color: #f9f9f9;
            border-left: 4px solid #98012e;
            border-radius: 4px;
        }

        .transition-section p {
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .links-section {
            margin-top: 40px;
            padding: 30px;
            background-color: #fafafa;
            border-radius: 4px;
            border: 1px solid #e5e5e5;
        }

        .links-section h2 {
            font-size: 28px;
            color: #98012e;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #98012e;
        }

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

        .links-section ul {
            list-style: none;
            margin: 0 0 20px 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 20px;
        }

        .links-section li {
            margin: 0;
            padding: 0;
        }

        .links-section a {
            color: #98012e;
            text-decoration: none;
            font-weight: normal;
            display: inline-block;
            padding: 5px 0;
            transition: color 0.2s;
        }

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

        footer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #e5e5e5;
            text-align: center;
            color: #666;
            font-size: 13px;
        }

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

            .container {
                padding: 20px;
            }

            header {
                margin: -20px -20px 20px -20px;
            }

            h1 {
                font-size: 24px;
                padding: 0 20px;
            }

            article h2 {
                font-size: 22px;
            }

            article h3 {
                font-size: 18px;
            }

            article h4 {
                font-size: 16px;
            }

            .links-section {
                padding: 20px;
            }

            .links-section h2 {
                font-size: 22px;
            }

            .links-section h3 {
                font-size: 18px;
            }

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

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

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 16px;
            }

            .links-section h2 {
                font-size: 20px;
            }

            .links-section h3 {
                font-size: 16px;
            }
        }
    