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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: #707070;
            font-size: 16px;
            line-height: 1.7;
            background: #fff;
        }

        h1, h2, h3, h4, h5, h6 {
            color: #252525;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        h1 {
            font-size: 32px;
            text-align: center;
            padding: 60px 20px 40px;
        }

        h2 {
            font-size: 28px;
        }

        h3 {
            font-size: 24px;
        }

        h4 {
            font-size: 20px;
        }

        h5 {
            font-size: 18px;
            text-align: center;
        }

        p {
            margin-bottom: 20px;
        }

        a {
            text-decoration: none;
            color: #252525;
            transition: color 0.2s;
        }

        a:hover {
            color: #fbaf98;
        }

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

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

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

        .logo {
            font-weight: 700;
            font-size: 22px;
            color: #252525;
        }

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

        nav ul li a {
            padding: 10px 15px;
            display: block;
        }

        article {
            padding: 40px 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        article p {
            margin-bottom: 20px;
        }

        .transition-section {
            padding: 40px 20px;
            background: #f5f5f5;
        }

        .transition-section .container {
            max-width: 900px;
        }

        .links-section {
            padding: 60px 20px;
            background: #fff;
        }

        .links-section h3 {
            margin-bottom: 30px;
            text-align: center;
        }

        .links-columns {
            column-count: 2;
            column-gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .links-columns ul {
            list-style: none;
            break-inside: avoid;
            margin-bottom: 30px;
        }

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

        .links-columns li a {
            color: #707070;
            display: inline-block;
            transition: transform 0.4s cubic-bezier(0.17, 0.62, 0.44, 0.99), color 0.2s;
        }

        .links-columns li a:hover {
            color: #252525;
            transform: translateX(5px);
        }

        footer {
            background: #363636;
            color: #ebebeb;
            padding: 60px 20px 20px;
            text-align: center;
        }

        footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
            color: #fff;
        }

        footer a {
            color: #ebebeb;
        }

        footer a:hover {
            color: #fbaf98;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            margin-top: 20px;
            font-size: 14px;
        }

        .border-decoration {
            position: relative;
            padding-bottom: 1px;
        }

        .border-decoration::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, #fbaf98 25%, #fce5e2 25%, #fce5e2 50%, #ffd2c2 50%, #ffd2c2 75%, #cfcecd 75%);
        }

        @media screen and (max-width: 768px) {
            h1 {
                font-size: 28px;
                padding: 40px 20px 30px;
            }

            h2 {
                font-size: 24px;
            }

            h3 {
                font-size: 20px;
            }

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

            .links-columns {
                column-count: 1;
            }

            article {
                padding: 30px 15px;
            }

            .transition-section {
                padding: 30px 15px;
            }

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

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

            h1 {
                font-size: 24px;
            }

            h5 {
                font-size: 16px;
            }
        }
    