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

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f1eb 0%, #ede4d3 100%);
            min-height: 100vh;
        }

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

        h1 {
            text-align: center;
            color: #8b4513;
            font-size: 2.5rem;
            margin: 40px 0;
            text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.2);
            font-weight: normal;
            letter-spacing: 1px;
        }

        article {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid #d4af37;
            position: relative;
        }

        article::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #d4af37, #8b4513, #d4af37);
            border-radius: 15px;
            z-index: -1;
        }

        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }

        article h2, article h3, article h4 {
            color: #8b4513;
            margin: 25px 0 15px 0;
            font-weight: bold;
        }

        article h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 10px;
        }

        article h3 {
            font-size: 1.4rem;
        }

        article strong {
            color: #8b4513;
            font-weight: bold;
        }

        .transition-section {
            background: rgba(212, 175, 55, 0.1);
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
            border: 1px solid #d4af37;
        }

        .transition-section p {
            font-size: 1.1rem;
            color: #5d4e37;
            font-style: italic;
        }

        .links-section {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 2px solid #8b4513;
        }

        .links-section h3 {
            color: #8b4513;
            font-size: 1.6rem;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 10px;
            background: linear-gradient(135deg, #f5f1eb, #ede4d3);
            padding: 15px;
            border-radius: 8px;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
            margin-top: 25px;
        }

        .links-section li {
            background: linear-gradient(135deg, #faf7f0, #f0ead6);
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid #e6d7c3;
        }

        .links-section li:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
            border-color: #d4af37;
        }

        .links-section a {
            display: block;
            padding: 15px 20px;
            color: #8b4513;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .links-section a:hover {
            color: #5d4e37;
            background: rgba(212, 175, 55, 0.1);
        }

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

            h1 {
                font-size: 2rem;
                margin: 30px 0;
            }

            article {
                padding: 25px;
                margin: 20px 0;
            }

            article p {
                font-size: 1rem;
            }

            .links-section {
                padding: 25px;
            }

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

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

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

            article {
                padding: 20px;
            }

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