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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: #f9f9f9;
        }

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

        header {
            background: #fff;
            border-bottom: 3px solid #f0f0f0;
            padding: 20px 0;
            margin-bottom: 40px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ff7302;
            text-decoration: none;
            padding: 10px 0;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-size: 15px;
            transition: color 0.3s;
            font-weight: 500;
        }

        nav ul li a:hover {
            color: #ff7302;
        }

        main {
            background: #fff;
            padding: 50px 0;
            min-height: 60vh;
        }

        h1 {
            font-size: 42px;
            color: #222;
            margin-bottom: 35px;
            line-height: 1.3;
            font-weight: 700;
        }

        article {
            margin-bottom: 50px;
        }

        article p {
            margin-bottom: 20px;
            font-size: 17px;
            color: #555;
        }

        article h2 {
            font-size: 32px;
            color: #333;
            margin: 35px 0 20px;
            font-weight: 600;
        }

        article h3 {
            font-size: 24px;
            color: #444;
            margin: 30px 0 15px;
            font-weight: 600;
        }

        article h4 {
            font-size: 20px;
            color: #555;
            margin: 25px 0 12px;
            font-weight: 600;
        }

        .transition-section {
            background: #fafafa;
            padding: 40px;
            border-radius: 8px;
            margin-bottom: 50px;
            border-left: 4px solid #ff7302;
        }

        .transition-section p {
            font-size: 17px;
            color: #555;
            margin-bottom: 15px;
        }

        .links-section {
            background: #fff;
            padding: 45px;
            border-radius: 8px;
            border: 1px solid #e5e5e5;
        }

        .links-section h3 {
            font-size: 26px;
            color: #333;
            margin-bottom: 20px;
            font-weight: 600;
            padding-bottom: 12px;
            border-bottom: 2px solid #ff7302;
        }

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

        .links-section ul:last-child {
            margin-bottom: 0;
        }

        .links-section ul li {
            padding-left: 20px;
            position: relative;
        }

        .links-section ul li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #ff7302;
            font-weight: bold;
        }

        .links-section ul li a {
            color: #0066cc;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            display: inline-block;
        }

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

        footer {
            background: #333;
            color: #fff;
            padding: 30px 0;
            margin-top: 60px;
            text-align: center;
        }

        footer p {
            font-size: 14px;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            nav ul {
                flex-direction: column;
                gap: 15px;
                text-align: center;
                width: 100%;
            }

            h1 {
                font-size: 32px;
            }

            article h2 {
                font-size: 26px;
            }

            article h3 {
                font-size: 22px;
            }

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

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

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

            main {
                padding: 30px 0;
            }
        }

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

            article p {
                font-size: 16px;
            }

            .logo {
                font-size: 24px;
            }

            nav ul li a {
                font-size: 14px;
            }
        }
    