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

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.7em;
            color: #666;
            background-color: #f5f5f5;
            font-weight: 500;
            -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 ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        nav ul li a:hover {
            opacity: 0.8;
        }

        .hero-section {
            background: linear-gradient(135deg, #2ea3f2 0%, #1a7dc4 100%);
            padding: 80px 20px;
            text-align: center;
            color: #fff;
        }

        .hero-section h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2em;
            margin-bottom: 20px;
            color: #fff;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

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

        article {
            background: #fff;
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }

        article h2 {
            color: #333;
            font-size: 32px;
            font-weight: 600;
            line-height: 1.3em;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #2ea3f2;
        }

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

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

        article h5 {
            color: #333;
            font-size: 18px;
            font-weight: 600;
            line-height: 1.3em;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        article h6 {
            color: #333;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.3em;
            margin-top: 18px;
            margin-bottom: 8px;
        }

        article p {
            margin-bottom: 1.2em;
            color: #666;
        }

        article p:last-child {
            margin-bottom: 0;
        }

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

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

        article ul li {
            list-style: disc;
        }

        article ol li {
            list-style: decimal;
        }

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

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

        article strong {
            font-weight: 700;
            color: #333;
        }

        article em {
            font-style: italic;
        }

        article blockquote {
            margin: 25px 0;
            padding-left: 25px;
            border-left: 5px solid #2ea3f2;
            font-style: italic;
            color: #555;
        }

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

        .transition-section p {
            margin-bottom: 1.2em;
            color: #666;
        }

        .transition-section p:last-child {
            margin-bottom: 0;
        }

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

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

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

        .links-section h3:first-of-type {
            margin-top: 0;
        }

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

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

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

        .links-section ul li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 11px;
            width: 8px;
            height: 8px;
            background: #2ea3f2;
            border-radius: 50%;
        }

        .links-section ul li a {
            color: #2ea3f2;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

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

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

        footer p {
            margin: 0;
            font-size: 14px;
        }

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

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px 20px;
            }

            .hero-section {
                padding: 50px 20px;
            }

            .hero-section h1 {
                font-size: 32px;
            }

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

            article h2, .links-section h2 {
                font-size: 26px;
            }

            article h3, .links-section h3 {
                font-size: 22px;
            }

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

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

        @media (max-width: 480px) {
            body {
                font-size: 15px;
            }

            .hero-section h1 {
                font-size: 28px;
            }

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

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

            article h3, .links-section h3 {
                font-size: 20px;
            }

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