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

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: #666;
            background-color: #f8f9fa;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        header {
            background-color: #2ea3f2;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
        }

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

        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 0.8;
        }

        main {
            max-width: 1080px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .content-wrapper {
            background-color: #fff;
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }

        h1 {
            font-size: 36px;
            color: #333;
            font-weight: 600;
            margin-bottom: 30px;
            line-height: 1.3;
            padding-bottom: 20px;
            border-bottom: 3px solid #2ea3f2;
        }

        article h2 {
            font-size: 28px;
            color: #333;
            font-weight: 600;
            margin-top: 35px;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        article h3 {
            font-size: 22px;
            color: #333;
            font-weight: 600;
            margin-top: 30px;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        article h4 {
            font-size: 18px;
            color: #333;
            font-weight: 600;
            margin-top: 25px;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        article p {
            margin-bottom: 20px;
            color: #666;
            font-size: 16px;
        }

        article ul, article ol {
            margin: 20px 0 20px 30px;
        }

        article li {
            margin-bottom: 10px;
            color: #666;
        }

        article a {
            color: #2ea3f2;
            text-decoration: none;
            transition: color 0.3s;
        }

        article a:hover {
            color: #1d7ab8;
        }

        .transition-section {
            background-color: #fff;
            padding: 40px 50px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }

        .transition-section p {
            color: #666;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .links-section {
            background-color: #fff;
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }

        .links-section h2 {
            font-size: 28px;
            color: #333;
            font-weight: 600;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e9ecef;
        }

        .links-section h3 {
            font-size: 20px;
            color: #333;
            font-weight: 600;
            margin-top: 30px;
            margin-bottom: 15px;
        }

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

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

        .links-section li:before {
            content: '→';
            position: absolute;
            left: 0;
            color: #2ea3f2;
            font-weight: bold;
        }

        .links-section a {
            color: #2ea3f2;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 15px;
        }

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

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

        .footer-container {
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .footer-container p {
            margin: 0;
            font-size: 14px;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            nav ul {
                flex-direction: column;
                gap: 15px;
            }

            .content-wrapper,
            .transition-section,
            .links-section {
                padding: 30px 25px;
            }

            h1 {
                font-size: 28px;
            }

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

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

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

            main {
                padding: 30px 15px;
            }
        }

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

            article h2 {
                font-size: 22px;
            }

            .content-wrapper,
            .transition-section,
            .links-section {
                padding: 25px 20px;
            }

            body {
                font-size: 15px;
            }
        }
    