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

        body {
            font-family: 'Open Sans', Arial, Helvetica, sans-serif;
            font-size: 15px;
            line-height: 1.6;
            color: #585c58;
            background: #fff;
        }

        header {
            background: #2a2a2a;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

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

        h1 {
            font-family: 'Open Sans', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #000;
            margin: 40px 0 30px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        h2 {
            font-family: 'Open Sans', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #434343;
            margin: 30px 0 20px;
        }

        h3 {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #3c3c3c;
            margin: 25px 0 15px;
            position: relative;
            padding-bottom: 10px;
        }

        h3:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background: #c99d28;
        }

        article {
            background: #fff;
            margin-bottom: 40px;
        }

        article p {
            margin: 15px 0;
            line-height: 1.7;
        }

        article ul, article ol {
            margin: 15px 0 15px 20px;
            line-height: 1.7;
        }

        article ul li {
            position: relative;
            padding-left: 20px;
            margin: 10px 0;
        }

        article ul li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            background: #c99d28;
            border-radius: 50%;
        }

        article ol {
            list-style: decimal;
        }

        article a {
            color: #c99d28;
            text-decoration: underline;
            transition: color 0.2s;
        }

        article a:hover {
            color: #0883b2;
        }

        .transition-section {
            background: #fdfbf7;
            padding: 30px;
            margin: 40px 0;
            border-left: 4px solid #c99d28;
        }

        .transition-section p {
            line-height: 1.7;
            margin: 10px 0;
        }

        .links-section {
            background: #fdfbf7;
            padding: 50px 30px;
            margin: 40px 0;
        }

        .links-section h3 {
            color: #3c3c3c;
            margin-bottom: 20px;
        }

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

        .links-section li {
            break-inside: avoid;
            margin: 12px 0;
            padding-left: 0;
        }

        .links-section li:before {
            display: none;
        }

        .links-section a {
            color: #555655;
            text-decoration: none;
            display: inline-block;
            padding: 8px 0;
            transition: all 0.3s;
            position: relative;
            font-size: 14px;
        }

        .links-section a:before {
            content: '→';
            margin-right: 8px;
            color: #c99d28;
            transition: margin 0.3s;
        }

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

        .links-section a:hover:before {
            margin-right: 13px;
        }

        footer {
            background: #2a2a2a;
            color: #b8b8b8;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        footer p {
            text-align: center;
            font-size: 12px;
            padding: 20px 0;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 26px;
                margin: 30px 0 20px;
            }

            h2 {
                font-size: 20px;
                margin: 25px 0 15px;
            }

            h3 {
                font-size: 16px;
            }

            .container {
                padding: 0 15px;
            }

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

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

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

            article {
                font-size: 14px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                max-width: 920px;
            }

            h1 {
                font-size: 28px;
            }
        }

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

            h1 {
                font-size: 22px;
            }

            h2 {
                font-size: 18px;
            }

            h3 {
                font-size: 15px;
            }
        }
    