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

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

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

        header {
            background: linear-gradient(135deg, #1a4d7a 0%, #2d6a9f 100%);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

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

        .logo {
            color: #fff;
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

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

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

        nav a:hover {
            opacity: 0.8;
        }

        main {
            background: #fff;
            margin: 40px auto;
            max-width: 1200px;
            padding: 60px 20px;
            box-shadow: 0 0 30px rgba(0,0,0,0.08);
        }

        h1 {
            font-size: 42px;
            color: #1a4d7a;
            margin-bottom: 30px;
            line-height: 1.2;
            font-weight: 700;
        }

        article {
            margin-bottom: 50px;
        }

        article h2 {
            font-size: 32px;
            color: #2d6a9f;
            margin-top: 40px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        article h3 {
            font-size: 24px;
            color: #2d6a9f;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        article p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #444;
        }

        .transition-section {
            background: #f8f9fa;
            padding: 40px;
            margin: 40px 0;
            border-left: 4px solid #2d6a9f;
            border-radius: 4px;
        }

        .transition-section p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }

        .links-section {
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
            padding: 50px 40px;
            margin-top: 50px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
        }

        .links-section h3 {
            font-size: 26px;
            color: #1a4d7a;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #2d6a9f;
            font-weight: 600;
        }

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

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

        .links-section li {
            padding: 8px 0;
        }

        .links-section a {
            color: #2d6a9f;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 20px;
        }

        .links-section a:before {
            content: "→";
            position: absolute;
            left: 0;
            transition: transform 0.3s ease;
        }

        .links-section a:hover {
            color: #1a4d7a;
            transform: translateX(5px);
        }

        .links-section a:hover:before {
            transform: translateX(5px);
        }

        footer {
            background: #1a4d7a;
            color: #fff;
            padding: 40px 0;
            margin-top: 60px;
        }

        footer .wrapper {
            text-align: center;
        }

        footer nav ul {
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

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

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

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

            h1 {
                font-size: 32px;
            }

            article h2 {
                font-size: 26px;
            }

            article h3 {
                font-size: 20px;
            }

            main {
                padding: 40px 20px;
                margin: 20px 10px;
            }

            .transition-section {
                padding: 25px;
                margin: 30px 0;
            }

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

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

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

            footer nav ul {
                gap: 10px;
            }
        }

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

            article h2 {
                font-size: 22px;
            }

            article h3 {
                font-size: 18px;
            }

            article p, .transition-section p, .links-section a {
                font-size: 15px;
            }

            .logo {
                font-size: 24px;
            }
        }
    