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

        html, body {
            height: 100%;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #666666;
            background: #ffffff;
        }

        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        header {
            background: #333;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        .header-container {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 15px;
            text-align: center;
        }

        .logo {
            color: #ffffff;
            font-size: 30px;
            font-weight: 500;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
        }

        .logo i {
            font-weight: 900;
            font-style: normal;
        }

        main {
            flex: 1;
            padding: 60px 0;
            background: #ffffff;
        }

        .container {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 15px;
        }

        h1 {
            font-size: 40px;
            font-weight: 600;
            color: #416a78;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            position: relative;
        }

        h1:after {
            content: '';
            display: block;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            width: 74px;
            height: 0;
            border-top: 4px double #948a54;
            margin: 0 auto;
        }

        article {
            max-width: 900px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }

        article h2 {
            font-size: 28px;
            color: #416a78;
            margin: 40px 0 20px;
            font-weight: 600;
        }

        article h3 {
            font-size: 22px;
            color: #948a54;
            margin: 30px 0 15px;
            font-weight: 600;
        }

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

        article p {
            margin-bottom: 20px;
            color: #666666;
            font-size: 14px;
        }

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

        article li {
            margin-bottom: 10px;
        }

        .transition-section {
            max-width: 900px;
            margin: 0 auto 40px;
        }

        .transition-section p {
            color: #666666;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .links-section {
            background: #f7f7f7;
            padding: 60px 0;
            margin-top: 50px;
            border-top: 1px solid #d6d4d4;
        }

        .links-section h3 {
            font-size: 24px;
            color: #416a78;
            margin-bottom: 25px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 40px;
            margin-bottom: 40px;
        }

        .links-section li {
            margin-bottom: 12px;
            break-inside: avoid;
            position: relative;
            padding-left: 17px;
        }

        .links-section li:before {
            content: '\f105';
            font-family: 'FontAwesome';
            position: absolute;
            left: 0;
            color: #00bdff;
        }

        .links-section a {
            color: #333333;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .links-section a:hover {
            color: #00bdff;
        }

        footer {
            background: #030404;
            color: rgba(255, 255, 255, 0.7);
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: auto;
        }

        .footer-content {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 15px;
            text-align: center;
            font-size: 13px;
            font-weight: 300;
        }

        @media (max-width: 991px) {
            h1 {
                font-size: 35px;
            }

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

            main {
                padding: 40px 0;
            }

            .links-section {
                padding: 40px 0;
            }
        }

        @media (max-width: 767px) {
            h1 {
                font-size: 28px;
                margin-bottom: 35px;
            }

            article h2 {
                font-size: 22px;
            }

            article h3 {
                font-size: 18px;
            }

            .logo {
                font-size: 24px;
            }

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

            main {
                padding: 30px 0;
            }

            .links-section {
                padding: 30px 0;
                margin-top: 30px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 22px;
                margin-bottom: 25px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 16px;
            }

            article p {
                font-size: 13px;
            }

            .logo {
                font-size: 20px;
            }

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