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

        body {
            font-family: 'Raleway', Arial, sans-serif;
            font-size: 15px;
            line-height: 1.8;
            color: #262626;
            background-color: #fff;
        }

        .site-wrapper {
            position: relative;
            overflow-x: hidden;
        }

        /* Header Styles */
        .site-header {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 20px 0;
            border-bottom: 1px solid #f0f0f0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

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

        .site-logo {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #262626;
            text-decoration: none;
            text-transform: uppercase;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 35px;
        }

        .main-nav a {
            color: #262626;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
        }

        .main-nav a:hover {
            color: #888;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: #262626;
            transition: width 0.3s ease;
        }

        .main-nav a:hover::after {
            width: 100%;
        }

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 30px;
        }

        h1 {
            font-size: 48px;
            font-weight: 400;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 60px;
            color: #262626;
            line-height: 1.2;
        }

        article {
            max-width: 900px;
            margin: 0 auto 80px;
        }

        article h2 {
            font-size: 32px;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin: 50px 0 25px;
            color: #262626;
            position: relative;
            padding-bottom: 15px;
        }

        article h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 1px;
            background-color: #262626;
        }

        article h3 {
            font-size: 24px;
            font-weight: 400;
            letter-spacing: 0.1em;
            margin: 40px 0 20px;
            color: #262626;
        }

        article h4 {
            font-size: 20px;
            font-weight: 500;
            margin: 30px 0 15px;
            color: #262626;
        }

        article h5 {
            font-size: 18px;
            font-style: italic;
            font-weight: 400;
            margin: 25px 0 15px;
            color: #262626;
        }

        article h6 {
            font-size: 16px;
            font-style: italic;
            font-weight: 400;
            margin: 20px 0 10px;
            color: #262626;
        }

        article p {
            margin-bottom: 20px;
            line-height: 1.9;
            color: #555;
        }

        /* Transition Section */
        .transition-section {
            max-width: 900px;
            margin: 0 auto 60px;
            padding: 40px 0;
            border-top: 1px solid #e7ebee;
        }

        .transition-section p {
            line-height: 1.9;
            color: #555;
            margin-bottom: 20px;
        }

        /* Links Section */
        .links-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 30px;
            background-color: #f9f9f9;
            border-top: 1px solid #e7ebee;
            border-bottom: 1px solid #e7ebee;
        }

        .links-section h3 {
            font-size: 20px;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #262626;
        }

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

        .links-section ul:last-child {
            margin-bottom: 0;
        }

        .links-section li {
            position: relative;
            padding-left: 15px;
        }

        .links-section li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: #888;
        }

        .links-section a {
            color: #262626;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
            line-height: 1.6;
        }

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

        /* Footer */
        .site-footer {
            background-color: #f9f9f9;
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid #e7ebee;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .footer-inner p {
            font-size: 13px;
            color: #555;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media only screen and (max-width: 1024px) {
            h1 {
                font-size: 40px;
                letter-spacing: 0.2em;
            }

            article h2 {
                font-size: 28px;
                letter-spacing: 0.15em;
            }

            article h3 {
                font-size: 22px;
            }

            .main-content {
                padding: 60px 30px;
            }
        }

        @media only screen and (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                gap: 20px;
            }

            .main-nav ul {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }

            h1 {
                font-size: 32px;
                letter-spacing: 0.15em;
                margin-bottom: 40px;
            }

            article h2 {
                font-size: 24px;
                letter-spacing: 0.1em;
            }

            article h3 {
                font-size: 20px;
            }

            .main-content {
                padding: 40px 20px;
            }

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

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        @media only screen and (max-width: 480px) {
            h1 {
                font-size: 26px;
                letter-spacing: 0.1em;
            }

            article h2 {
                font-size: 22px;
            }

            article h3 {
                font-size: 18px;
            }

            .main-nav ul {
                gap: 15px;
            }

            .main-nav a {
                font-size: 12px;
            }

            .site-logo {
                font-size: 20px;
            }
        }
    