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

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }

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

        h1 {
            font-size: 2.5em;
            font-weight: 300;
            text-align: center;
            margin: 60px 0 40px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #000;
        }

        article {
            margin-bottom: 60px;
            text-align: center;
        }

        article h2,
        article h3,
        article h4 {
            font-weight: 400;
            margin: 30px 0 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #000;
        }

        article h2 {
            font-size: 1.8em;
        }

        article h3 {
            font-size: 1.4em;
        }

        article h4 {
            font-size: 1.1em;
        }

        article p {
            margin-bottom: 20px;
            font-size: 1em;
            line-height: 1.8;
            color: #333;
        }

        article em {
            font-style: italic;
            color: #666;
        }

        article strong {
            font-weight: 500;
        }

        article a {
            color: #000;
            text-decoration: none;
            border-bottom: 1px solid #000;
            transition: opacity 0.3s ease;
        }

        article a:hover {
            opacity: 0.6;
        }

        .transition-section {
            margin: 60px 0;
            padding: 40px 20px;
            background-color: #f8f8f8;
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
        }

        .transition-section p {
            text-align: center;
            font-size: 1em;
            line-height: 1.8;
            color: #333;
            margin-bottom: 15px;
        }

        .links-section {
            margin: 60px 0;
            padding: 40px 30px;
            background-color: #fafafa;
            border: 1px solid #e5e5e5;
        }

        .links-section h3 {
            font-size: 1.3em;
            font-weight: 400;
            margin: 30px 0 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #000;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

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

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

        .links-section a {
            color: #000;
            text-decoration: none;
            font-size: 0.95em;
            line-height: 1.6;
            transition: opacity 0.3s ease;
            display: inline-block;
        }

        .links-section a:hover {
            opacity: 0.6;
        }

        .links-section a::before {
            content: "→ ";
            margin-right: 5px;
            opacity: 0.5;
        }

        @media (max-width: 768px) {
            .container {
                padding: 30px 15px;
            }

            h1 {
                font-size: 2em;
                margin: 40px 0 30px;
                letter-spacing: 1px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

            article h4 {
                font-size: 1em;
            }

            article p {
                font-size: 0.95em;
            }

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

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

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

            .links-section h3 {
                font-size: 1.1em;
                margin: 25px 0 15px;
            }
        }

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

            article h2 {
                font-size: 1.3em;
            }

            .links-section a {
                font-size: 0.9em;
            }
        }
    