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

        body {
            font-family: 'Segoe UI', Tahoma, Arial, Helvetica, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #94300E 0%, #B7541F 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            background: #fff;
            min-height: 100vh;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
        }

        header {
            background: linear-gradient(135deg, #C09A2F 0%, #EBD275 100%);
            padding: 40px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="0%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>') repeat-x;
            opacity: 0.5;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #94300E;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }

        .subtitle {
            font-size: 1.1rem;
            color: #584F2C;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        nav {
            background: #584F2C;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 0;
            padding: 0;
        }

        nav li {
            margin: 0;
        }

        nav a {
            display: block;
            padding: 15px 25px;
            color: #F6EAC1;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a:hover {
            background: #94300E;
            color: #EBD275;
        }

        nav a.active {
            background: #94300E;
            color: #EBD275;
        }

        main {
            padding: 40px 40px 60px;
            max-width: 800px;
            margin: 0 auto;
        }

        article {
            margin-bottom: 40px;
        }

        article h2, article h3, article h4 {
            color: #584F2C;
            margin: 30px 0 15px;
            font-weight: 600;
        }

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

        article h3 {
            font-size: 1.4rem;
        }

        article h4 {
            font-size: 1.2rem;
        }

        article p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1rem;
            line-height: 1.7;
        }

        article ul, article ol {
            margin: 20px 0 20px 30px;
        }

        article li {
            margin-bottom: 8px;
            line-height: 1.6;
        }

        article a {
            color: #94300E;
            text-decoration: underline;
            transition: color 0.3s ease;
        }

        article a:hover {
            color: #621F09;
            text-decoration: none;
        }

        .transition-section {
            background: #F9F7F0;
            padding: 30px;
            margin: 40px 0;
            border-left: 4px solid #C09A2F;
            border-radius: 0 8px 8px 0;
        }

        .transition-section p {
            margin-bottom: 15px;
            font-size: 1rem;
            line-height: 1.7;
        }

        .links-section {
            background: #FAFAFA;
            padding: 40px;
            border-radius: 12px;
            border: 1px solid #E5E5E5;
            margin-top: 40px;
        }

        .links-section h3 {
            color: #584F2C;
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #C09A2F;
        }

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

        .links-section li {
            margin: 0;
        }

        .links-section a {
            display: block;
            padding: 12px 16px;
            background: #fff;
            color: #584F2C;
            text-decoration: none;
            border-radius: 6px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .links-section a:hover {
            background: #C09A2F;
            color: #fff;
            border-color: #C09A2F;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(192, 154, 47, 0.3);
        }

        footer {
            background: #584F2C;
            color: #F6EAC1;
            text-align: center;
            padding: 30px 40px;
            margin-top: 60px;
        }

        footer p {
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        footer a {
            color: #EBD275;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #F6EAC1;
            text-decoration: underline;
        }

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

            h1 {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1rem;
            }

            nav ul {
                flex-direction: column;
            }

            nav a {
                padding: 12px 20px;
                text-align: center;
            }

            main {
                padding: 30px 20px 40px;
            }

            article h2 {
                font-size: 1.5rem;
            }

            .transition-section, .links-section {
                padding: 20px;
                margin: 30px 0;
            }

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

            footer {
                padding: 20px;
            }
        }

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

            main {
                padding: 20px 15px 30px;
            }

            .transition-section, .links-section {
                padding: 15px;
            }
        }
    