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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: #515151;
            background: #ffffff;
        }

        .page-wrap {
            max-width: 100%;
            margin: 0 auto;
        }

        .site-header {
            background: #fff;
            padding: 1.5rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: #515151;
            text-decoration: none;
        }

        .primary-menu ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .primary-menu a {
            color: #515151;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .primary-menu a:hover {
            color: #a46497;
        }

        .site-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 20px;
        }

        h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            color: #515151;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        article {
            background: #fff;
            padding: 2rem 0;
            margin-bottom: 3rem;
        }

        article h2 {
            font-size: 2rem;
            color: #515151;
            margin: 2rem 0 1rem;
            font-weight: 700;
        }

        article h3 {
            font-size: 1.5rem;
            color: #515151;
            margin: 1.5rem 0 1rem;
            font-weight: 600;
        }

        article h4 {
            font-size: 1.25rem;
            color: #515151;
            margin: 1.25rem 0 0.75rem;
            font-weight: 600;
        }

        article p {
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.8;
            color: #515151;
        }

        .transition-section {
            background: #f7f6f7;
            padding: 2.5rem;
            margin: 3rem 0;
            border-radius: 8px;
            border-left: 4px solid #a46497;
        }

        .transition-section p {
            margin-bottom: 1rem;
            color: #515151;
        }

        .links-section {
            background: #fff;
            padding: 3rem 2.5rem;
            margin: 3rem 0;
            border: 1px solid #ebe9eb;
            border-radius: 8px;
        }

        .links-section h3 {
            font-size: 1.75rem;
            color: #515151;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #a46497;
            font-weight: 700;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem 2rem;
            margin-bottom: 2.5rem;
        }

        .links-section li {
            padding: 0.5rem 0;
        }

        .links-section a {
            color: #515151;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            padding-left: 1.25rem;
            position: relative;
        }

        .links-section a:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #a46497;
            font-weight: 700;
        }

        .links-section a:hover {
            color: #a46497;
            padding-left: 1.5rem;
        }

        .site-footer {
            background: #515151;
            color: #fff;
            padding: 3rem 20px 2rem;
            margin-top: 4rem;
        }

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

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }

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

        .footer-section h4 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-menu {
            list-style: none;
        }

        .footer-menu a {
            color: #d3ced2;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .footer-menu a:hover {
            color: #fff;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #777;
            color: #d3ced2;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .primary-menu ul {
                flex-direction: column;
                gap: 1rem;
                display: none;
            }

            h1 {
                font-size: 2rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.25rem;
            }

            .site-content {
                padding: 2rem 15px;
            }

            .links-section {
                padding: 2rem 1.5rem;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .transition-section {
                padding: 1.5rem;
                margin: 2rem 0;
            }

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

        @media (min-width: 769px) and (max-width: 1024px) {
            .site-content {
                padding: 3rem 30px;
            }
        }
    