
        * {
            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: #333;
            background: #f5f5f5;
        }

        .navbar {
            background: #2c3e50;
            padding: 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .navbar-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            height: 60px;
        }

        .brand {
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            color: white;
        }

        .brand-election {
            color: white;
        }

        .brand-track {
            color: #e74c3c;
        }

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

        h1 {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #e74c3c;
        }

        article {
            background: white;
            padding: 40px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        article h2 {
            color: #2c3e50;
            font-size: 1.8rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        article h3 {
            color: #34495e;
            font-size: 1.4rem;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        article h4 {
            color: #34495e;
            font-size: 1.2rem;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        article p {
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: #555;
        }

        .transition-section {
            background: white;
            padding: 30px 40px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .transition-section p {
            font-size: 1.05rem;
            color: #555;
            margin-bottom: 15px;
        }

        .links-section {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }

        .links-section h3 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin-top: 30px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ecf0f1;
        }

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

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

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

        .links-section ul li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #e74c3c;
            font-weight: bold;
        }

        .links-section ul li a {
            color: #3498db;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .links-section ul li a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .navbar-inner {
                padding: 0 15px;
            }

            .brand {
                font-size: 20px;
            }

            .container {
                margin-top: 70px;
                padding: 0 15px;
            }

            h1 {
                font-size: 2rem;
            }

            article {
                padding: 25px 20px;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.3rem;
            }

            article h4 {
                font-size: 1.1rem;
            }

            .transition-section {
                padding: 20px;
            }

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

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

            .links-section h3 {
                font-size: 1.3rem;
            }
        }

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

            article {
                padding: 20px 15px;
            }

            article p {
                font-size: 1rem;
            }

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