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

        body {
            font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #ccc;
            background: #000;
            margin: 0;
            padding: 0;
        }

        .site-wrapper {
            max-width: 1080px;
            margin: 0 auto;
            background: #000;
            padding: 0 70px;
        }

        header {
            padding: 30px 0;
            border-bottom: 1px solid #525252;
        }

        .header-brand {
            font-size: 34px;
            color: #E46171;
            font-weight: bold;
            margin-bottom: 20px;
        }

        nav {
            margin-top: 20px;
        }

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

        nav ul li {
            display: inline-block;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #E46171;
        }

        main {
            padding: 40px 0;
        }

        h1 {
            font-size: 42px;
            color: #E46171;
            margin-bottom: 30px;
            font-weight: bold;
            line-height: 1.2;
        }

        h2 {
            font-size: 26px;
            color: #E46171;
            margin: 30px 0 15px;
            font-weight: bold;
        }

        h3 {
            font-size: 22px;
            color: #E46171;
            margin: 25px 0 12px;
            font-weight: bold;
        }

        h4 {
            font-size: 18px;
            color: #E46171;
            margin: 20px 0 10px;
        }

        article {
            margin-bottom: 40px;
        }

        article p {
            margin-bottom: 20px;
            color: #ccc;
            line-height: 1.8;
        }

        article a {
            color: #B5EFED;
            text-decoration: none;
        }

        article a:hover {
            color: #E46171;
            text-decoration: underline;
        }

        .transition-section {
            margin: 40px 0;
            padding: 30px 0;
            border-top: 1px solid #525252;
            border-bottom: 1px solid #525252;
        }

        .transition-section p {
            color: #ccc;
            margin-bottom: 15px;
        }

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

        .links-section h3 {
            font-size: 22px;
            color: #E46171;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #525252;
        }

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

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

        .links-section ul li a {
            color: #B5EFED;
            text-decoration: none;
            display: block;
            padding: 8px 0;
            transition: color 0.3s;
        }

        .links-section ul li a:hover {
            color: #E46171;
        }

        footer {
            padding: 30px 0;
            border-top: 1px solid #525252;
            text-align: center;
            font-size: 12px;
            color: #808080;
        }

        footer a {
            color: #808080;
            text-decoration: none;
        }

        footer a:hover {
            color: #E46171;
        }

        @media (max-width: 768px) {
            .site-wrapper {
                padding: 0 20px;
            }

            h1 {
                font-size: 32px;
            }

            h2 {
                font-size: 22px;
            }

            h3 {
                font-size: 18px;
            }

            nav ul {
                flex-direction: column;
                gap: 10px;
            }

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

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

            h2 {
                font-size: 20px;
            }

            h3 {
                font-size: 16px;
            }

            body {
                font-size: 13px;
            }
        }
    