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

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: #555;
            line-height: 1.6;
            background-color: #fff;
        }

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

        header {
            background: linear-gradient(to bottom, #00a6e8 0%, #0275be 100%);
            padding: 20px 0;
            border-bottom: 3px solid #0275be;
        }

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

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-text {
            color: #fff;
            font-size: 11px;
            line-height: 1.4;
            text-transform: uppercase;
        }

        .site-title {
            color: #fff;
            font-size: 32px;
            font-weight: bold;
            text-transform: uppercase;
            margin: 0;
        }

        h1 {
            font-size: 38px;
            line-height: 1.2;
            color: #141412;
            margin: 40px 0 20px;
            text-transform: uppercase;
            font-weight: bold;
        }

        h2 {
            font-size: 28px;
            color: #0089d0;
            margin: 30px 0 15px;
            text-transform: uppercase;
            font-weight: bold;
        }

        h3 {
            font-size: 22px;
            color: #00adef;
            margin: 25px 0 12px;
            text-transform: uppercase;
            font-weight: bold;
        }

        h4 {
            font-size: 18px;
            color: #0089d0;
            margin: 20px 0 10px;
            font-weight: bold;
        }

        article {
            margin: 30px 0;
        }

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

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

        article li {
            margin-bottom: 10px;
        }

        .transition-section {
            margin: 40px 0;
            padding: 30px;
            background-color: #f7f5e7;
            border-radius: 10px;
        }

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

        .links-section {
            margin: 40px 0 60px;
            padding: 40px 30px;
            background: linear-gradient(to bottom, #722487 0%, #90278e 100%);
            border-radius: 10px;
            color: #fff;
        }

        .links-section h3 {
            color: #fff;
            font-size: 24px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        }

        .links-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
            column-count: 2;
            column-gap: 30px;
        }

        .links-section li {
            margin-bottom: 12px;
            break-inside: avoid;
        }

        .links-section a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 5px 0;
        }

        .links-section a:hover {
            color: #fbb525;
            padding-left: 5px;
        }

        footer {
            background-color: #e8e5ce;
            padding: 40px 0;
            margin-top: 60px;
            border-top: 3px solid #00519c;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-box {
            flex: 1;
            min-width: 200px;
        }

        .footer-box h3 {
            color: #0089d0;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .footer-box p {
            font-size: 14px;
            line-height: 1.6;
            color: #555;
        }

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

            .site-title {
                font-size: 24px;
            }

            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 24px;
            }

            h3 {
                font-size: 20px;
            }

            .links-section ul {
                column-count: 1;
            }

            .footer-content {
                flex-direction: column;
            }

            .transition-section {
                padding: 20px;
            }

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

            article p {
                font-size: 15px;
            }
        }

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

            .site-title {
                font-size: 20px;
            }

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