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

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

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

        header {
            background-color: #0e4267;
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        header .container {
            display: flex;
            align-items: center;
        }

        header ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .televisa-regional {
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            text-decoration: none;
        }

        .televisa-regional a {
            color: #fff;
            text-decoration: none;
        }

        main {
            min-height: calc(100vh - 120px);
            padding: 40px 0;
        }

        h1 {
            color: #0e4267;
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 30px;
            text-align: center;
        }

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

        article p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.7;
        }

        article h2, article h3, article h4, article h5, article h6 {
            color: #0e4267;
            margin: 25px 0 15px 0;
            font-weight: 700;
        }

        .transition-section {
            background: #fff;
            padding: 25px 30px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .links-section {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .links-section h3 {
            color: #0e4267;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #0e4267;
        }

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

        .links-section li {
            padding: 0;
        }

        .links-section a {
            color: #0e4267;
            text-decoration: none;
            font-weight: 400;
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }

        .links-section a:hover {
            color: #1565c0;
            padding-left: 10px;
        }

        .links-section a i {
            margin-right: 10px;
            color: #666;
            width: 16px;
        }

        footer {
            background-color: #0e4267;
            color: #fff;
            padding: 30px 0;
            text-align: center;
            margin-top: auto;
        }

        footer h6 {
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        footer p {
            font-size: 14px;
            line-height: 1.5;
            opacity: 0.9;
        }

        footer small {
            display: block;
            margin: 5px 0;
        }

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

            h1 {
                font-size: 2rem;
            }

            article, .transition-section, .links-section {
                padding: 20px;
                margin-bottom: 20px;
            }

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

            main {
                padding: 20px 0;
            }

            footer {
                padding: 20px 0;
            }
        }

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

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

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