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

        body {
            font-family: 'Signika Negative', sans-serif;
            font-weight: 300;
            line-height: 1.6;
            color: #444444;
            background-color: #eaebee;
            background-attachment: fixed;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #ffffff;
            box-shadow: 0 0 0 1px rgba(68,68,68,0.1);
            min-height: 100vh;
        }

        header {
            background: linear-gradient(rgba(5,16,78,0.9), rgba(7,13,79,0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><rect fill="%2305104e" width="1000" height="300"/><polygon fill="%23bf842b" points="0,300 1000,250 1000,300"/></svg>');
            background-size: cover;
            background-position: center;
            color: #ffffff;
            padding: 40px 20px;
            text-align: center;
            position: relative;
        }

        header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #bf842b 0%, #ff8002 50%, #bf842b 100%);
        }

        h1 {
            font-family: 'Homenaje', sans-serif;
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 400;
        }

        main {
            padding: 40px 20px;
        }

        article {
            max-width: 800px;
            margin: 0 auto 40px;
        }

        article h2, article h3, article h4, article h5, article h6 {
            font-family: 'Homenaje', sans-serif;
            font-weight: 400;
            color: #000000;
            margin: 30px 0 15px;
        }

        article h2 {
            font-size: 2rem;
            border-bottom: 3px solid #0288d1;
            padding-bottom: 10px;
        }

        article h3 {
            font-size: 1.5rem;
            color: #05104e;
        }

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

        article a {
            color: #0288d1;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: border-bottom 0.3s ease;
        }

        article a:hover {
            border-bottom: 2px solid #0288d1;
        }

        .transition-section {
            max-width: 800px;
            margin: 0 auto 40px;
            background: rgba(68,68,68,0.06);
            padding: 30px;
            border-radius: 8px;
            border: 1px solid rgba(68,68,68,0.15);
        }

        .links-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-top: 4px solid #bf842b;
            padding: 40px 20px;
            margin-top: 40px;
        }

        .links-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .links-section h3 {
            font-family: 'Homenaje', sans-serif;
            font-size: 1.8rem;
            color: #05104e;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #bf842b;
        }

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

        .links-section li {
            background: #ffffff;
            border-radius: 6px;
            padding: 15px 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-left: 4px solid #0288d1;
            transition: all 0.3s ease;
        }

        .links-section li:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            border-left-color: #bf842b;
        }

        .links-section a {
            color: #444444;
            text-decoration: none;
            font-weight: 400;
            font-size: 1.05rem;
            display: block;
            transition: color 0.3s ease;
        }

        .links-section a:hover {
            color: #0288d1;
        }

        footer {
            background: #222222;
            color: #dddddd;
            padding: 30px 20px 20px;
            text-align: center;
            margin-top: auto;
        }

        footer p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

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

            header {
                padding: 30px 15px;
            }

            main {
                padding: 30px 15px;
            }

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

            article h2 {
                font-size: 1.7rem;
            }

            article h3 {
                font-size: 1.3rem;
            }
        }

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

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

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