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

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

        .header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: #fff;
            padding: 2rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

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

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-align: center;
            color: #fff;
        }

        .content-wrapper {
            background: #fff;
            margin: 2rem auto;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        article {
            padding: 3rem 2rem;
            border-bottom: 1px solid #e0e0e0;
        }

        article h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #3498db;
        }

        article h3 {
            font-size: 1.5rem;
            color: #34495e;
            margin: 1.5rem 0 1rem;
        }

        article h4 {
            font-size: 1.25rem;
            color: #34495e;
            margin: 1.25rem 0 0.75rem;
        }

        article p {
            margin-bottom: 1.25rem;
            text-align: justify;
            color: #555;
        }

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

        article a:hover {
            color: #2980b9;
            border-bottom-color: #2980b9;
        }

        .transition-section {
            padding: 2rem;
            background: #f5f5f5;
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
        }

        .transition-section p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .links-section {
            padding: 3rem 2rem;
            background: #fff;
        }

        .links-section h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
            padding-bottom: 1rem;
            border-bottom: 3px solid #3498db;
        }

        .links-section h3 {
            font-size: 1.5rem;
            color: #34495e;
            margin: 2rem 0 1rem;
            padding-left: 1rem;
            border-left: 4px solid #3498db;
        }

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

        .links-section li {
            padding: 0.5rem 0;
        }

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

        .links-section a:before {
            content: '→';
            margin-right: 0.5rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .links-section a:hover {
            color: #2980b9;
            transform: translateX(5px);
        }

        .links-section a:hover:before {
            opacity: 1;
            transform: translateX(0);
        }

        footer {
            background: #2c3e50;
            color: #fff;
            padding: 2rem 0;
            margin-top: 3rem;
        }

        .footer-content {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.8;
        }

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

            article {
                padding: 2rem 1.5rem;
            }

            article h2 {
                font-size: 1.75rem;
            }

            article h3 {
                font-size: 1.35rem;
            }

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

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

            .transition-section {
                padding: 1.5rem;
            }
        }

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

            article {
                padding: 1.5rem 1rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            .links-section {
                padding: 1.5rem 1rem;
            }
        }
    