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

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: #333;
            background-color: #f5f5f5;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        header {
            background-color: #000;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

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

        .logo {
            color: #fce21b;
            font-size: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        nav a:hover {
            color: #fce21b;
        }

        .hero {
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
            padding: 4rem 20px;
            text-align: center;
            border-bottom: 4px solid #fce21b;
        }

        h1 {
            color: #fff;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-subtitle {
            color: #fce21b;
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

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

        article {
            background: #fff;
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
        }

        article h2 {
            color: #000;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #fce21b;
            font-weight: 700;
        }

        article h3 {
            color: #000;
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        article h4 {
            color: #333;
            font-size: 1.25rem;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

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

        article p:last-child {
            margin-bottom: 0;
        }

        .transition-section {
            background: #fff;
            padding: 2.5rem 3rem;
            border-radius: 8px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
        }

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

        .transition-section p:last-child {
            margin-bottom: 0;
        }

        .links-section {
            background: #fff;
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
        }

        .links-section h2 {
            color: #000;
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 700;
        }

        .links-section h3 {
            color: #000;
            font-size: 1.4rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-weight: 600;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #fce21b;
        }

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

        .links-section li {
            position: relative;
            padding-left: 1.25rem;
        }

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

        .links-section a {
            color: #2EA3F2;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .links-section a:hover {
            color: #000;
            text-decoration: underline;
        }

        footer {
            background-color: #000;
            color: #fff;
            padding: 2rem 20px;
            text-align: center;
            margin-top: 4rem;
        }

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

        .footer-nav {
            margin-bottom: 1.5rem;
        }

        .footer-nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: #fce21b;
        }

        .footer-text {
            color: #999;
            font-size: 0.9rem;
        }

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

            .header-container {
                flex-direction: column;
                text-align: center;
            }

            h1 {
                font-size: 2rem;
            }

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

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

            .footer-nav ul {
                flex-direction: column;
                gap: 0.75rem;
            }

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

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

            article h2, .links-section h2 {
                font-size: 1.5rem;
            }

            article h3, .links-section h3 {
                font-size: 1.25rem;
            }

            .hero {
                padding: 3rem 15px;
            }
        }
    