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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            min-height: 100vh;
        }

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

        h1 {
            font-size: 3rem;
            color: #fff;
            text-align: center;
            margin-bottom: 50px;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 300;
            position: relative;
            padding-bottom: 20px;
        }

        h1:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: #c9a961;
        }

        article {
            background: #fff;
            padding: 60px;
            margin-bottom: 40px;
            border-radius: 2px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        article h2 {
            font-size: 2rem;
            color: #2d2d2d;
            margin-bottom: 25px;
            font-weight: 400;
            border-left: 4px solid #c9a961;
            padding-left: 20px;
        }

        article h3 {
            font-size: 1.5rem;
            color: #444;
            margin-top: 30px;
            margin-bottom: 20px;
            font-weight: 400;
        }

        article h4 {
            font-size: 1.2rem;
            color: #555;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        article p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #555;
            text-align: justify;
        }

        article strong {
            color: #c9a961;
            font-weight: 600;
        }

        .transition-section {
            background: rgba(255, 255, 255, 0.95);
            padding: 50px 60px;
            margin-bottom: 40px;
            border-radius: 2px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            border-left: 6px solid #c9a961;
        }

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

        .links-section {
            background: #fff;
            padding: 60px;
            border-radius: 2px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .links-section h3 {
            font-size: 1.8rem;
            color: #2d2d2d;
            margin-bottom: 25px;
            margin-top: 40px;
            font-weight: 400;
            border-bottom: 2px solid #c9a961;
            padding-bottom: 15px;
        }

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

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

        .links-section li {
            break-inside: avoid;
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }

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

        .links-section a {
            color: #444;
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
            display: inline-block;
            font-size: 1.05rem;
        }

        .links-section a:hover {
            color: #c9a961;
            padding-left: 5px;
        }

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

            h1 {
                font-size: 2rem;
                margin-bottom: 30px;
                letter-spacing: 2px;
            }

            article {
                padding: 30px 25px;
                margin-bottom: 25px;
            }

            article h2 {
                font-size: 1.6rem;
                margin-bottom: 20px;
            }

            article h3 {
                font-size: 1.3rem;
                margin-top: 25px;
                margin-bottom: 15px;
            }

            article h4 {
                font-size: 1.1rem;
                margin-top: 20px;
                margin-bottom: 12px;
            }

            article p {
                font-size: 1rem;
                text-align: left;
            }

            .transition-section {
                padding: 30px 25px;
                margin-bottom: 25px;
            }

            .transition-section p {
                font-size: 1rem;
            }

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

            .links-section h3 {
                font-size: 1.5rem;
                margin-bottom: 20px;
                margin-top: 30px;
            }

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

            .links-section li {
                margin-bottom: 10px;
            }

            .links-section a {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
                letter-spacing: 1px;
            }

            article {
                padding: 20px 18px;
            }

            article h2 {
                font-size: 1.4rem;
                padding-left: 15px;
            }

            .transition-section {
                padding: 20px 18px;
            }

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

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