            <style>
                * { box-sizing: border-box; margin: 0; padding: 0; }
                body { font-family: 'Outfit', sans-serif; background-color: #f4f6f8; color: #2c3e50; min-height: 100vh; padding: 30px; display: flex; flex-direction: column; }
                header { margin-bottom: 25px; display: flex; justify-content: space-between; align-items: center; }
                .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; border: none; }
                .btn-primary { background: #981A32; color: #fff; }
                .btn-primary:hover { background: #7a1427; transform: translateY(-1px); }
                .btn-secondary { background: #fff; color: #2c3e50; border: 1px solid #dcdde1; margin-left: 10px; }
                .btn-secondary:hover { background: #f8f9fa; }
                
                .header-title h1 { font-size: 1.8rem; font-weight: 700; color: #981A32; display: flex; align-items: center; gap: 10px; }
                .header-title p { font-size: 0.9rem; color: #7f8c8d; margin-top: 4px; }
                
                .table-info-bar { background: #fff; padding: 15px 25px; border-radius: 12px; margin-bottom: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.02); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; border-left: 5px solid #981A32; }
                .table-info-meta { display: flex; gap: 20px; font-size: 0.85rem; color: #7f8c8d; }
                .table-info-meta strong { color: #2c3e50; }
                .search-input { padding: 8px 15px; border: 1px solid #dcdde1; border-radius: 6px; font-family: inherit; font-size: 0.85rem; width: 280px; outline: none; }
                .search-input:focus { border-color: #981A32; }
                
                /* Contenedor Semántico de Datos */
                main { flex: 1; display: flex; flex-direction: column; gap: 15px; }
                
                /* Accordion de FAQ */
                .faq-item { background: #fff; border-radius: 10px; padding: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.02); border-left: 4px solid #981A32; }
                .faq-item h2 { font-size: 1.1rem; color: #2c3e50; margin-bottom: 8px; font-weight: 600; }
                .faq-item p { font-size: 0.92rem; color: #57606f; line-height: 1.6; }
                
                /* Grid General (Playas, Directorio, Instalaciones, Políticos) */
                .data-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
                .data-card { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.02); border: 1px solid #eef2f5; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.2s; }
                .data-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(152, 26, 50, 0.04); }
                .data-card-body h2 { font-size: 1.15rem; color: #981A32; margin-bottom: 10px; font-weight: 700; }
                .data-card-body p { font-size: 0.88rem; color: #57606f; line-height: 1.5; margin-bottom: 12px; }
                .data-meta-list { font-size: 0.82rem; color: #7f8c8d; border-top: 1px solid #f8f9fa; padding-top: 10px; margin-top: 10px; display: flex; flex-direction: column; gap: 5px; }
                .data-meta-list span strong { color: #2c3e50; }
                
                /* Tabla Semántica General */
                .table-container { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.02); border: 1px solid #eef2f5; }
                table { width: 100%; border-collapse: collapse; text-align: left; font-size: 0.9rem; }
                th { background: #f8f9fa; padding: 15px 20px; font-weight: 600; color: #2c3e50; border-bottom: 2px solid #eef2f5; }
                td { padding: 15px 20px; border-bottom: 1px solid #f1f2f6; color: #57606f; line-height: 1.5; }
                tr:last-child td { border-bottom: none; }
                tr:hover td { background: #fdfafb; }
                
                /* Badges de Estado */
                .badge { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 3px 8px; border-radius: 12px; text-transform: uppercase; }
                .badge-info { background: #eef2f5; color: #7f8c8d; }
                .badge-success { background: #e8f5e9; color: #2e7d32; }
                .badge-brand { background: #fbf0f2; color: #981A32; }
                
                /* Buscador de no resultados */
                .no-results { background: #fff; border-radius: 12px; padding: 40px; text-align: center; display: none; color: #7f8c8d; border: 1px dashed #dcdde1; }
